Skip to content

Commit

Permalink
Merge pull request rails#8791 from griffinmyers/master
Browse files Browse the repository at this point in the history
Updated DirtyModel's @changed_attributes hash to be symbol/string agnostic

Conflicts:
	activemodel/CHANGELOG.md
  • Loading branch information
rafaelfranca committed Oct 3, 2013
2 parents 2dabee2 + 0e65587 commit c48c111
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
5 changes: 5 additions & 0 deletions activemodel/CHANGELOG.md
@@ -1,3 +1,8 @@
* Updated the `ActiveModel::Dirty#changed_attributes` method to be indifferent between using
symbols and strings as keys.

*William Myers*

* Added new API methods `reset_changes` and `changed_applied` to `ActiveModel::Dirty`
that control changes state. Previsously you needed to update internal
instance variables, but now API methods are available.
Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/dirty.rb
Expand Up @@ -145,7 +145,7 @@ def previous_changes
# person.name = 'robert'
# person.changed_attributes # => {"name" => "bob"}
def changed_attributes
@changed_attributes ||= {}
@changed_attributes ||= ActiveSupport::HashWithIndifferentAccess.new
end

# Handle <tt>*_changed?</tt> for +method_missing+.
Expand Down
17 changes: 16 additions & 1 deletion activemodel/test/cases/dirty_test.rb
Expand Up @@ -3,11 +3,12 @@
class DirtyTest < ActiveModel::TestCase
class DirtyModel
include ActiveModel::Dirty
define_attribute_methods :name, :color
define_attribute_methods :name, :color, :size

def initialize
@name = nil
@color = nil
@size = nil
end

def name
Expand All @@ -28,6 +29,15 @@ def color=(val)
@color = val
end

def size
@size
end

def size=(val)
attribute_will_change!(:size) unless val == @size
@size = val
end

def save
changes_applied
end
Expand Down Expand Up @@ -124,4 +134,9 @@ def save
assert_equal ["Otto", "Mr. Manfredgensonton"], @model.name_change
assert_equal @model.name_was, "Otto"
end

test "using attribute_will_change! with a symbol" do
@model.size = 1
assert @model.size_changed?
end
end

0 comments on commit c48c111

Please sign in to comment.