aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-12 09:12:37 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-12 09:12:37 -0700
commit70db38572a70f1b1ae53086873c4ce25cf4d34c7 (patch)
treed8794e2059cf19ebe997b36cb8bc0d678f1be563 /activemodel
parentb36ef40c017e5c71c66b32c1d04584185c2131ca (diff)
parent068289f23933225acc2cff27e4ebe1a0afd8cb94 (diff)
downloadrails-70db38572a70f1b1ae53086873c4ce25cf4d34c7.tar.gz
rails-70db38572a70f1b1ae53086873c4ce25cf4d34c7.tar.bz2
rails-70db38572a70f1b1ae53086873c4ce25cf4d34c7.zip
Merge pull request #10192 from senny/align_expression_outputs
align the result of expressions vertically [ci skip].
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/README.rdoc14
1 files changed, 7 insertions, 7 deletions
diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc
index a66225319d..a399fe9051 100644
--- a/activemodel/README.rdoc
+++ b/activemodel/README.rdoc
@@ -24,8 +24,8 @@ to integrate with Action Pack out of the box: <tt>ActiveModel::Model</tt>.
end
person = Person.new(name: 'bob', age: '18')
- person.name # => 'bob'
- person.age # => '18'
+ person.name # => 'bob'
+ person.age # => '18'
person.valid? # => true
It includes model name introspections, conversions, translations and
@@ -82,12 +82,12 @@ behavior out of the box:
end
person = Person.new
- person.name # => nil
- person.changed? # => false
+ person.name # => nil
+ person.changed? # => false
person.name = 'bob'
- person.changed? # => true
- person.changed # => ['name']
- person.changes # => { 'name' => [nil, 'bob'] }
+ person.changed? # => true
+ person.changed # => ['name']
+ person.changes # => { 'name' => [nil, 'bob'] }
person.name = 'robert'
person.save
person.previous_changes # => {'name' => ['bob, 'robert']}