RVM Ruby on Snow Leopard -
i installed rvm , recent version of ruby it. when try generate new rails app following error message.
note: gem::specification#default_executable= deprecated no replacement. removed on or after 2011-10-01. gem::specification#default_executable= called /users/local/.rvm/gems/ruby-1.9.2-p180@global/specifications/rake-0.8.7.gemspec:10. note: gem::specification#default_executable= deprecated no replacement. removed on or after 2011-10-01. gem::specification#default_executable= called /users/local/.rvm/gems/ruby-1.9.2-p180/specifications/rake-0.8.7.gemspec:10. note: gem::specification#default_executable= deprecated no replacement. removed on or after 2011-10-01. gem::specification#default_executable= called /users/local/.rvm/gems/ruby-1.9.2-p180/specifications/rubygems-update-1.8.1.gemspec:11. /library/ruby/site/1.8/rubygems/dependency.rb:247:in `to_specs': not find rails (>= 0) amongst [rake-0.8.7, rake-0.8.7, rubygems-update-1.8.1] (gem::loaderror) /library/ruby/site/1.8/rubygems/dependency.rb:256:in `to_spec' /library/ruby/site /1.8/rubygems.rb:1182:in `gem' /usr/bin/rails:18
any idea on why happening?
make sure have rails gem installed rvm installation:
gem install rails
otherwise, default run version of rails pre-installed on snow leopard (the /usr/bin/rails
file)
all of deprecation messages you're seeing warnings; latest version of rubygems deprecated lot of stuff.
Comments
Post a Comment