Sha256: c4a2f8ae23368cf599a6239638b6b43773fb4e32bf1f7e0743fabc1801870335
Contents?: true
Size: 1.39 KB
Versions: 26
Compression:
Stored size: 1.39 KB
Contents
# This takes the preferrable methods and adds some # syntatic sugar to access the preferences # # class App < Configuration # preference :color, :string # end # # a = App.new # # setters: # a.color = :blue # a[:color] = :blue # a.set :color = :blue # a.preferred_color = :blue # # getters: # a.color # a[:color] # a.get :color # a.preferred_color # # module Spree::Preferences class Configuration include Spree::Preferences::Preferable def configure yield(self) if block_given? end def preference_cache_key(name) [rails_cache_id, self.class.name, name].compact.join('::').underscore end def rails_cache_id ENV['RAILS_CACHE_ID'] end def reset preferences.each do |name, value| set_preference name, preference_default(name) end end alias :[] :get_preference alias :[]= :set_preference alias :get :get_preference def set(*args) options = args.extract_options! options.each do |name, value| set_preference name, value end if args.size == 2 set_preference args[0], args[1] end end def method_missing(method, *args) name = method.to_s.gsub('=', '') if has_preference? name if method.to_s =~ /=$/ set_preference(name, args.first) else get_preference name end else super end end end end
Version data entries
26 entries across 26 versions & 1 rubygems