diff options
author | Gabi Stefanini <gabriela.stefanini@shopify.com> | 2016-12-06 22:12:03 -0500 |
---|---|---|
committer | Gabi Stefanini <gabriela.stefanini@shopify.com> | 2016-12-06 22:37:25 -0500 |
commit | b970ade2520de0ae9723ba35b6b2038991610c24 (patch) | |
tree | a3b2967c440a533a9a0af3bad6e5c4c9dbbdeed7 | |
parent | f3d0762d6caad1d5bdcd2df1df1aba869e47f0b0 (diff) | |
download | rails-b970ade2520de0ae9723ba35b6b2038991610c24.tar.gz rails-b970ade2520de0ae9723ba35b6b2038991610c24.tar.bz2 rails-b970ade2520de0ae9723ba35b6b2038991610c24.zip |
Add Action View to Active Model API documentation
In Rails 4.1, Action View was extracted from Action Pack, but this
change was not reflected in the API documentation of ActiveModel::Model.
This commits makes it explicit in the documentation that Active Model
also interacts with Action View as well as Action Pack.
[ci skip]
-rw-r--r-- | activemodel/lib/active_model/model.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/model.rb b/activemodel/lib/active_model/model.rb index 9503db5dc0..945a5402a3 100644 --- a/activemodel/lib/active_model/model.rb +++ b/activemodel/lib/active_model/model.rb @@ -2,7 +2,7 @@ module ActiveModel # == Active \Model \Basic \Model # # Includes the required interface for an object to interact with - # Action Pack, using different Active Model modules. + # Action Pack and Action View, using different Active Model modules. # It includes model name introspections, conversions, translations and # validations. Besides that, it allows you to initialize the object with a # hash of attributes, pretty much like Active Record does. |