How to load development environments in Rails 3

I am using rails 3 on ubuntu 10. When i trying to load rails
development environment using Rails Runner command

i am getting this:

Usage: runner [options] (‘Some.ruby(code)’ or a filename)

-e, --environment=name           Specifies the environment for the

runner to operate under (test/development/production).
Default: development

-h, --help                       Show this help message.

You can also use runner as a shebang line for your scripts like this:

#!/usr/bin/env /root/workspace/anurag/script/rails runner

Product.all.each { |p| p.price *= 2 ; p.save! }

I also tried rails console command then i get this error:

usr/local/lib/ruby/1.9.1/irb/completion.rb:9:in require': cannot load such file -- readline (LoadError) from /usr/local/lib/ruby/1.9.1/irb/completion.rb:9:in<top
(required)>’
from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.0/lib/rails/
commands/console.rb:3:in require' from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.0/lib/rails/ commands/console.rb:3:in<top (required)>’
from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.0/lib/rails/
commands.rb:38:in require' from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.0/lib/rails/ commands.rb:38:in<top (required)>’
from script/rails:6:in require' from script/rails:6:in

Anyone please tell how to load Development environment.

Yes i am able to create application using rails new myapp. so can u
please suggest me the link that can guide me for installing ruby and
rails using RVM.

On 6 February 2012 11:45, Anurag S. [email protected]
wrote:

Yes i am able to create application using rails new myapp. so can u
please suggest me the link that can guide me for installing ruby and
rails using RVM.

The third link when I google for
install rails rvm ubuntu
is http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/ which
looks like a good guide.

Colin

              Default:development

I also triedrailsconsole command then i get this error:
commands.rb:38:in `require’
Have you installed ruby andrailsusing RVM? If not then I strongly
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.


gplus.to/clanlaw

Thank You Colin

On 6 February 2012 09:24, Anurag S. [email protected]
wrote:

from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.0/lib/rails/
commands.rb:38:in <top (required)>' from script/rails:6:in require’
from script/rails:6:in `’

Anyone please tell how to load Development environment.

Are you able to create a rails application?
rails new myapp
If that works go to the myapp folder and you should then be able to do
rails console.

Have you installed ruby and rails using RVM? If not then I strongly
suggest that you do this. It will make life much easier in the long
run. If you google for
install rails rvm ubuntu
I am sure you will find instructions for doing this.

Colin