Skip to content

Instantly share code, notes, and snippets.

@ruckus
Created June 12, 2013 19:47
Show Gist options
  • Save ruckus/5768471 to your computer and use it in GitHub Desktop.
Save ruckus/5768471 to your computer and use it in GitHub Desktop.
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}=", (send(hstore_attribute) || {}).merge(key.to_s => value))
send("#{hstore_attribute}_will_change!")
end
define_method(key) do
send(hstore_attribute) && send(hstore_attribute)[key.to_s]
end
###Right here
send(:scope, "for_#{key}", -> value { where("#{hstore_attribute} -> '#{key}'=?", value.to_s)})
end
end
end
end
ActiveRecord::Base.send(:include, HstoreAccessor)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment