From 4cf23c9f8e78cea6c29ba083d9bc3fa5d4d2e32a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 22 Sep 2007 22:17:10 +0000 Subject: 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 --- railties/lib/commands/console.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'railties/lib') diff --git a/railties/lib/commands/console.rb b/railties/lib/commands/console.rb index b83a33f9eb..edb135ff40 100644 --- a/railties/lib/commands/console.rb +++ b/railties/lib/commands/console.rb @@ -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" -- cgit v1.2.3