public
Description: display content from other blogs at your website with just one simple html tag
Homepage: http://www.feevy.com
Clone URL: git://github.com/alx/feevy.git
Add modif after Jesus install
alx (author)
Wed Aug 13 18:58:45 -0700 2008
commit  f558812eac3399232d4018651ff7f6cfc9c1e0ae
tree    47548abce82f69abc7393681a9df64547792b31f
parent  a8428823e9d615b3bd5ec120f7c470e710e68ea5
...
25
26
27
28
 
29
30
31
...
35
36
37
38
 
39
40
41
...
25
26
27
 
28
29
30
31
...
35
36
37
 
38
39
40
41
0
@@ -25,7 +25,7 @@ unless defined?(Rails::Initializer)
0
       rails_gem = Gem.cache.search('rails', "=#{version}").first
0
 
0
       if rails_gem
0
-        require_gem "rails", "=#{version}"
0
+        gem "rails", "=#{version}"
0
         require rails_gem.full_gem_path + '/lib/initializer'
0
       else
0
         STDERR.puts %(Cannot find gem for Rails =#{version}:
0
@@ -35,7 +35,7 @@ unless defined?(Rails::Initializer)
0
         exit 1
0
       end
0
     else
0
-      require_gem "rails"
0
+      require "rails"
0
       require 'initializer'
0
     end
0
   end
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ class MigrateAvatar < ActiveRecord::Migration
0
   def self.up
0
     
0
     # Create new id relationship for avatars
0
-    #add_column :subscriptions, :avatar_id, :integer
0
+    add_column :subscriptions, :avatar_id, :integer
0
     #add_column :feeds, :avatar_id, :integer
0
     
0
     # Add default avatar for all feeds

Comments