Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/best_in_place/files/
Date: Mon, 31 Oct 2016 12:10:01
Message-Id: 1477915211.09796e648984bbc12242feedd9c895b97196adb5.monsieurp@gentoo
1 commit: 09796e648984bbc12242feedd9c895b97196adb5
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 26 16:12:01 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 12:00:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09796e64
7
8 dev-ruby/best_in_place: remove unused patch.
9
10 Closes: https://github.com/gentoo/gentoo/pull/2417
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 .../files/best_in_place-1.1.0-kramdown.patch | 35 ----------------------
15 1 file changed, 35 deletions(-)
16
17 diff --git a/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch b/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch
18 deleted file mode 100644
19 index 33ae5e0..00000000
20 --- a/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch
21 +++ /dev/null
22 @@ -1,35 +0,0 @@
23 -diff --git a/Gemfile b/Gemfile
24 -index 7ae9d6a..5858f12 100644
25 ---- a/Gemfile
26 -+++ b/Gemfile
27 -@@ -5,4 +5,4 @@ gemspec
28 -
29 - gem 'sqlite3'
30 - gem 'jquery-rails'
31 --gem 'rdiscount'
32 -+gem 'kramdown'
33 -diff --git a/test_app/Gemfile b/test_app/Gemfile
34 -index 6d53037..32676b2 100644
35 ---- a/test_app/Gemfile
36 -+++ b/test_app/Gemfile
37 -@@ -7,7 +7,7 @@ gem 'best_in_place', :path => ".."
38 -
39 - gem 'jquery-rails'
40 -
41 --gem 'rdiscount'
42 -+gem 'kramdown'
43 -
44 - group :assets do
45 - gem 'sass-rails', '~> 3.2.3'
46 -diff --git a/test_app/app/models/user.rb b/test_app/app/models/user.rb
47 -index 604f5ba..7cc9248 100644
48 ---- a/test_app/app/models/user.rb
49 -+++ b/test_app/app/models/user.rb
50 -@@ -19,6 +19,6 @@ class User < ActiveRecord::Base
51 - end
52 -
53 - def markdown_desc
54 -- RDiscount.new(description).to_html.html_safe
55 -+ Kramdown::Document.new(description).to_html.html_safe
56 - end
57 - end