forked from bryanlarsen/agility-gitorial-patches
-
Notifications
You must be signed in to change notification settings - Fork 1
/
43-add-bluecloth-gem.patch
47 lines (38 loc) · 1.01 KB
/
43-add-bluecloth-gem.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
add-bluecloth-gem
From: Bryan Larsen <[email protected]>
You may need to install the relevant ruby gem: either BlueCloth
(markdown) or RedCloth (textile). Do this by adding
gem "bluecloth"
to your Gemfile and then running
$ bundle install
---
Gemfile | 1 +
Gemfile.lock | 2 ++
2 files changed, 3 insertions(+)
diff --git a/Gemfile b/Gemfile
index 7f4301f..42df1de 100644
--- a/Gemfile
+++ b/Gemfile
@@ -48,3 +48,4 @@ gem "hobo_bootstrap_ui", "2.0.0.pre8"
gem "jquery-ui-themes", "~> 0.0.4"
gem "acts_as_list"
+gem "bluecloth"
diff --git a/Gemfile.lock b/Gemfile.lock
index db6dac0..35fb9f9 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -36,6 +36,7 @@ GEM
multi_json (~> 1.0)
acts_as_list (0.1.9)
arel (3.0.2)
+ bluecloth (2.2.0)
bootstrap-datepicker-rails (0.6.35)
railties (>= 3.0)
bootstrap-sass (2.2.2.0)
@@ -155,6 +156,7 @@ PLATFORMS
DEPENDENCIES
acts_as_list
+ bluecloth
coffee-rails (~> 3.2.1)
hobo (= 2.0.0.pre8)
hobo_bootstrap (= 2.0.0.pre8)