[Rails 3.2.5] Problem z AR

Zaktualizowałem gem-y i chciałem rozpocząć nowy projekt. Niestety pojawił się problem i nie wiem gdzie szukać rozwiązania.

Założyłem nowy projekt rails new tgs -G, w Gemfile odkomentowałem gem ‘therubyracer’, wykonałem bundle install.
Do tej pory wszystko działa poprawnie, nie pojawiają się żadne komunikaty błędów. Dla sprawdzenia uruchamiam serwer i …

[tuptus@tmobil tgs]$ rails s /usr/local/share/gems/gems/railties-3.2.5/lib/rails/railtie/configuration.rb:85:in `method_missing': undefined method `active_record' for #<Rails::Application::Configuration:0x0000000235f190> (NoMethodError) from /home/tuptus/RubymineProjects/tgs/config/application.rb:55:in `<class:Application>' from /home/tuptus/RubymineProjects/tgs/config/application.rb:13:in `<module:Tgs>' from /home/tuptus/RubymineProjects/tgs/config/application.rb:12:in `<top (required)>' from /usr/local/share/gems/gems/railties-3.2.5/lib/rails/commands.rb:53:in `require' from /usr/local/share/gems/gems/railties-3.2.5/lib/rails/commands.rb:53:in `block in <top (required)>' from /usr/local/share/gems/gems/railties-3.2.5/lib/rails/commands.rb:50:in `tap' from /usr/local/share/gems/gems/railties-3.2.5/lib/rails/commands.rb:50:in `<top (required)>' from script/rails:6:in `require' from script/rails:6:in `<main>
Rake również wysypuje się podobnym błędem.

Z pliku config/applicatin.rb zakomentowałem config.active_record.whitelist_attributes = true (tak dla sprawdzenia) i otrzymałem:

[tuptus@tmobil tgs]$ rake -T rake about # List versions of all Rails frameworks and the environment rake assets:clean # Remove compiled assets rake assets:precompile # Compile all the assets named in config.assets.precompile rake doc:app # Generate docs for the app -- also available doc:rails, doc:guides, doc:plugins (options: TEMPLATE=/rdoc-template.rb, TITLE="Custom Title") rake log:clear # Truncates all *.log files in log/ to zero bytes rake middleware # Prints out your Rack middleware stack rake notes # Enumerate all annotations (use notes:optimize, :fixme, :todo for focus) rake notes:custom # Enumerate a custom annotation, specify with ANNOTATION=CUSTOM rake rails:template # Applies the template supplied by LOCATION=(/path/to/template) or URL rake rails:update # Update configs and some other initially generated files (or use just update:configs, update:scripts, or update:application_controller) rake routes # Print out all defined routes in match order, with names. rake secret # Generate a cryptographically secure secret key (this is typically used to generate a secret for cookie sessions). rake stats # Report code statistics (KLOCs, etc) from the application rake test # Runs test:units, test:functionals, test:integration together (also available: test:benchmark, test:profile, test:plugins) rake test:recent # Run tests for {:recent=>"test:prepare"} / Test recent changes rake test:single # Run tests for {:single=>"test:prepare"} rake test:uncommitted # Run tests for {:uncommitted=>"test:prepare"} / Test changes since last checkin (only Subversion and Git) rake time:zones:all # Displays all time zones, also available: time:zones:us, time:zones:local -- filter with OFFSET parameter, e.g., OFFSET=-6 rake tmp:clear # Clear session, cache, and socket files from tmp/ (narrow w/ tmp:sessions:clear, tmp:cache:clear, tmp:sockets:clear) rake tmp:create # Creates tmp directories for sessions, cache, sockets, and pids
Czyli brakuje jakichkolwiek opcji dotyczących pracy z bazą danych.

W trakcie wykonania bundle install na liście jest activerecord-3.2.5, w pliku Gemfile.lock również pojawia się na liście.

Gdzie szukać błędu? Czy to ja robię coś nie tak czy może to jakiś błąd w RoR 3.2.5?

bundle exec rake -T tez dziala bez bledu ? Jak wygląda Gemfile ? Czy ta linijka, którą zakomentowałeś to była ta z numerem 55 ? Jak wygląda pierwsze 15 linii pliku config/application.rb ?

Problem rozwiązało dodanie do Gemfile gema bigdecimal.

Rozwiązanie znalazłem zmieniając sqlite3 na mysql2, który zwrócił błąd z informacją o brakującym gemie. Po dodaniu bigdecimal i zmianie na sqlite3 wszystko działa poprawie.