public
Fork of insoshi/insoshi
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/trentono/insoshi.git
Added BlueCloth to vendor/gems
Michael Hartl (author)
Fri Apr 25 12:17:51 -0700 2008
commit  a66f830017ff757e60d60cbd12d8157e7ed6e68e
tree    7c8d4090740b39a803f6b42c160e5c670fa33b85
parent  c4d02b0c9a2490bfabec5c56659b473ec00774da
0
...
31
32
33
34
35
36
37
...
31
32
33
 
34
35
36
0
@@ -31,7 +31,6 @@ $ sudo gem install image_science
0
 $ sudo gem install ferret
0
 $ sudo gem install mysql
0
 $ sudo gem install sqlite3-ruby
0
-$ sudo gem install BlueCloth
0
 
0
 ## Installing the app
0
 
...
27
28
29
 
 
 
 
30
31
32
...
58
59
60
 
 
61
62
63
...
27
28
29
30
31
32
33
34
35
36
...
62
63
64
65
66
67
68
69
0
@@ -27,6 +27,10 @@ Rails::Initializer.run do |config|
0
 
0
   # Add additional load paths for your own custom dirs
0
   config.load_paths += %W( #{RAILS_ROOT}/app/sweepers )
0
+ config.load_paths += Dir["#{RAILS_ROOT}/vendor/gems/**"].map do |dir|
0
+ File.directory?(lib = "#{dir}/lib") ? lib : dir
0
+ end
0
+
0
 
0
   # Force all environments to use the same logger level
0
   # (by default production uses :info, the others :debug)
0
@@ -58,6 +62,8 @@ Rails::Initializer.run do |config|
0
   # config.active_record.default_timezone = :utc
0
 end
0
 
0
+require 'bluecloth'
0
+
0
 # Set INLINEDIR to override default location for ruby_inline directory
0
 # The home directory may not be correctly set in an "su"/"sudo" situation
0
 # and will lead to runtime errors with image_science

Comments

    No one has commented yet.