Skip to content

Instantly share code, notes, and snippets.

@inopinatus
Last active February 22, 2019 08:32
Show Gist options
  • Star 22 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save inopinatus/2834785 to your computer and use it in GitHub Desktop.
Save inopinatus/2834785 to your computer and use it in GitHub Desktop.
hstore accessor class method for AR
# include from an initializer
module HstoreAccessor
def self.included(base)
base.extend(ClassMethods)
end
module ClassMethods
def hstore_accessor(hstore_attribute, *keys)
Array(keys).flatten.each do |key|
define_method("#{key}=") do |value|
send("#{hstore_attribute}_will_change!")
send("#{hstore_attribute}=", (send(hstore_attribute) || {}).merge(key.to_s => value))
end
define_method(key) do
send(hstore_attribute) && send(hstore_attribute)[key.to_s]
end
end
end
end
end
ActiveRecord::Base.send(:include, HstoreAccessor)
@taboularasa
Copy link

works great, thanks!

@Charlie-Y
Copy link

this is awesome, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment