module Puffer module Controller module Config def self.included base base.class_eval do extend ClassMethods include InstanceMethods puffer_class_attribute :group, :default puffer_class_attribute :model puffer_class_attribute :destroy, true helper_method :configuration end end module InstanceMethods def configuration @configuration ||= Config.new(self.class) end end module ClassMethods def puffer_class_attribute name, default = nil class_attribute "_puffer_attribute_#{name}" send "_puffer_attribute_#{name}=", default end def configure &block block.bind(Config.new(self)).call end def configuration @configuration ||= Config.new(self) end end class Config attr_accessor :controller def initialize controller @controller = controller end def method_missing method, *args, &block method_name = "_puffer_attribute_#{method}" if args.present? && controller.respond_to?("#{method_name}=") controller.send "#{method_name}=", args.first elsif controller.respond_to?(method_name) controller.send method_name end end end end end end