What is the equivalent of ruby script/about in Rails 3?

Go To StackoverFlow.com

2

What is the equivalent of ruby script/about in Rails 3? I tried rails about and rails help and could not find the answer. Thanks.

2012-04-03 21:27
by Chirag Patel
I just dug into an old Rails 2 project to find out what script/info actually did - but it wasn't there. Are you sure it was part of rails core? If so - what sort of output did you used to get - theTRON 2012-04-03 22:49
there is not such a command, what are you trying to do - Spyros 2012-04-05 03:45
Sorry guys, I meant to say 'ruby script/about' which I updated abov - Chirag Patel 2012-04-08 04:07


4

Running rake about should give you the same information. It works for me on Rails 3.2.2 and Ruby 1.9.3.

2012-04-08 04:51
by Paul Simpson
http://guides.rubyonrails.org/command_line.html has detailed info on the commands available in Rails - Vijay Dev 2012-04-08 09:40
Ads