mirror of
https://github.com/github/rails.git
synced 2026-02-04 11:15:08 -05:00
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:
@@ -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]
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user