I am new to the ruby world. I want to run an existing Rails project, but I get the following error:
$ruby script/rails server
/Users/apple/.rvm/gems/ruby-1.9.3-p194/gems/json-1.7.0/ext/json/ext/json/ext/parser.bundle: undefined class/module Encoding (ArgumentError)
from /Users/apple/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require'
from /Users/apple/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:236:in `load_dependency'
Should I install other packages or another version of rails?
If I write a small project using rails new xxx then $ruby script/rails server works.
BTW: I am in mac.
Thank you!
bundle install Using rake (0.9.2.2) Using i18n (0.6.0) Using multi_json (1.3.4) ..... Your bundle is complete! Usebundle show [gemname]` to see where a bundled gem is installed.` – kevin young Jun 5 '12 at 2:40rails s. Also, you might want to include the full error message. – DaMainBoss Jun 5 '12 at 6:07