Skip to content

Commit

Permalink
upgraded to work with Rails 2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyf committed Feb 17, 2010
1 parent 8cb3036 commit ed59f54
Show file tree
Hide file tree
Showing 110 changed files with 6,092 additions and 672 deletions.
File renamed without changes.
5 changes: 3 additions & 2 deletions config/boot.rb
Expand Up @@ -44,6 +44,7 @@ class VendorBoot < Boot
def load_initializer
require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
Rails::Initializer.run(:install_gem_spec_stubs)
Rails::GemDependency.add_frozen_gem_path
end
end

Expand All @@ -67,7 +68,7 @@ def load_rails_gem

class << self
def rubygems_version
Gem::RubyGemsVersion if defined? Gem::RubyGemsVersion
Gem::RubyGemsVersion rescue nil
end

def gem_version
Expand All @@ -81,8 +82,8 @@ def gem_version
end

def load_rubygems
min_version = '1.3.2'
require 'rubygems'
min_version = '1.1.1'
unless rubygems_version >= min_version
$stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
exit 1
Expand Down
2 changes: 1 addition & 1 deletion config/environment.rb
Expand Up @@ -6,7 +6,7 @@

# Specifies gem version of Rails to use when vendor/rails is not present
#RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
RAILS_GEM_VERSION = '2.2.2' unless defined? RAILS_GEM_VERSION
RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION

# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Expand Down
7 changes: 6 additions & 1 deletion db/schema.rb
Expand Up @@ -9,7 +9,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20091204193534) do
ActiveRecord::Schema.define(:version => 20091229154645) do

create_table "activities", :force => true do |t|
t.integer "user_id"
Expand Down Expand Up @@ -152,6 +152,11 @@
t.datetime "updated_at"
end

create_table "facebook_posts", :force => true do |t|
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "feeds", :force => true do |t|
t.datetime "created_at"
t.datetime "updated_at"
Expand Down
Empty file modified drop.sh 100644 → 100755
Empty file.
5,310 changes: 5,310 additions & 0 deletions log/development.log

Large diffs are not rendered by default.

Binary file modified public/images/nophoto.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/rails.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/rails2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/testevent.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/tim.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ed59f54

Please sign in to comment.