I am trying to update the application from 3.2 to rails 4. I think that all conflicts of gems were resolved at that moment, although later I know that this can happen again.
While I try to βbind exec rails sβ and open the application in the browser, turn on the home application index, it gives me this error:
IOError (not open for reading)
Can anyone help with this? Thank you very much.
Here is the list of gems that I used:
gem 'rails', '4.0.1' gem 'sass-rails', '~> 4.0.0' gem 'coffee-rails', '~> 4.0.0' gem 'uglifier', '>= 1.3.0' gem 'jquery-rails' gem 'jbuilder', '~> 1.2'
And here is the log message for the console:
Started GET "/" for 127.0.0.1 at 2013-11-06 20:16:27 +1100 Processing by HomeController#index as HTML PCategory Load (0.5ms) SELECT "p_categories".* FROM "p_categories" Rendered home/index.html.erb within layouts/application (4.1ms) Completed 500 Internal Server Error in 15ms IOError (not opened for reading): activesupport (4.0.1) lib/active_support/json/encoding.rb:256:in `each' activesupport (4.0.1) lib/active_support/json/encoding.rb:256:in `to_a' activesupport (4.0.1) lib/active_support/json/encoding.rb:256:in `as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:58:in `block in as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:81:in 'check_for_circular_references' activesupport (4.0.1) lib/active_support/json/encoding.rb:57:in `as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `block in as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `each' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `map' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:58:in `block in as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:81:in g`check_for_circular_references' activesupport (4.0.1) lib/active_support/json/encoding.rb:57:in `as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `block in as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `each' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `map' activesupport (4.0.1) lib/active_support/json/encoding.rb:296:in `as_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:50:in `block in encode' activesupport (4.0.1) lib/active_support/json/encoding.rb:81:in `check_for_circular_references' activesupport (4.0.1) lib/active_support/json/encoding.rb:49:in `encode' activesupport (4.0.1) lib/active_support/json/encoding.rb:306:in `block in encode_json' activesupport (4.0.1) lib/active_support/json/encoding.rb:306:in `each' activesupport (4.0.1) lib/active_support/json/encoding.rb:306:in `map'
ruby-on-rails-4
LPing
source share