Print Rails version when starting console (closes #7440) [eyematz]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7576 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2007-09-22 22:17:10 +00:00
parent 833bd62e20
commit 4cf23c9f8e
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Print Rails version when starting console #7440 [eyematz]
* Added rake db:version to get the current schema version from the command line #7521 [pelargir]
* Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]

View File

@@ -24,9 +24,9 @@ ENV['RAILS_ENV'] = case ARGV.first
end
if options[:sandbox]
puts "Loading #{ENV['RAILS_ENV']} environment in sandbox."
puts "Any modifications you make will be rolled back on exit."
puts "Loading #{ENV['RAILS_ENV']} environment in sandbox (Rails #{Rails::VERSION::STRING})"
puts "Any modifications you make will be rolled back on exit"
else
puts "Loading #{ENV['RAILS_ENV']} environment."
puts "Loading #{ENV['RAILS_ENV']} environment (Rails #{Rails::VERSION::STRING})"
end
exec "#{options[:irb]} #{libs} --simple-prompt"