rails/railties/lib
Jamie Gaskins ab727743bf Add ActiveModel requirement to application.rb
Currently, ActiveModel is only loaded by ActiveRecord. If you skip ActiveRecord, ActiveModel will not be required (or even autoloaded) and including `ActiveModel::Model` into a plain Ruby class will raise `NameError`.

To reproduce this:

- create a new app with `rails new my_app -O`
- create a Ruby class that includes `ActiveModel::Model` in `app/models`
- load up a Rails console and try to do anything with the class :-)

Since ActionPack relies so heavily on the ActiveModel API, this should probably be considered a dependency of the app. Another possibility would be to make it a dependency of ActionController.
2013-05-22 17:46:54 +08:00
..
rails Add ActiveModel requirement to application.rb 2013-05-22 17:46:54 +08:00
rails.rb reverts changes to Rails.version made in #8501 2013-03-30 14:16:46 +11:00