Skip to content

Instantly share code, notes, and snippets.

@flov
Last active December 3, 2015 22:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flov/5ac98d54e6a024988964 to your computer and use it in GitHub Desktop.
Save flov/5ac98d54e6a024988964 to your computer and use it in GitHub Desktop.
  • I upgraded to ruby 2.2.2 since I had issues installing certain gems like nokogiri and others on ruby 1.9.3

  • I ran into an issue with polyglot which for some reason tried to require minitest: polyglot.rb:65:in require': cannot load such file -- minitest/unit (LoadError)` solution: add minitest to Gemfile

  • ran into a ruby 2.2.2 related error: dyld: Symbol not found: _rb_thread_select since ruby 2.2 this has been renamed to _rb_thread_select solution: upgrade pg gem

  • rake db:create and rake db:schema:load run fine and I can start the server.

  • running into another issue: undefined method each_pair for #<ActionDispatch::Flash::FlashHash:0x007f9255588cb8> on app/views/json/_flash.rabl:2 solution: commenting out object OpenStruct.new(flash) in _flash.rabl lets finally render the root path.

@Em-AK
Copy link

Em-AK commented Dec 3, 2015

Hi,
I just installed ruby 2.1.5 and followed the process described in the README without encountering any errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment