Skip to content

Commit

Permalink
updated to rails 2.3.8 and ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcz committed Aug 16, 2010
1 parent b80b6c0 commit 1f6677a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/environment.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Be sure to restart your server when you modify this file

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

# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
Expand Down
4 changes: 3 additions & 1 deletion vendor/plugins/haml/init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
# gems:install may be run to install Haml with the skeleton plugin
# but not the gem itself installed.
# Don't die if this is the case.
raise e unless defined?(Rake) && Rake.application.top_level_tasks.include?('gems:install')
raise e unless defined?(Rake) &&
(Rake.application.top_level_tasks.include?('gems') ||
Rake.application.top_level_tasks.include?('gems:install'))
end
end

Expand Down

0 comments on commit 1f6677a

Please sign in to comment.