Sha256: 49ad4a28449520ae5a99812c26357084c91f0be888925ab2ebe05e0b1096fa1d
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
Contents
module AutoHtmlFor # default options that can be overridden on the global level @@auto_html_for_options = { :htmlized_attribute_suffix => '_html' } mattr_reader :auto_html_for_options def self.included(base) base.extend(ClassMethods) end module ClassMethods def auto_html_for(raw_attrs, &proc) include AutoHtmlFor::InstanceMethods before_save :auto_html_prepare define_method("auto_html_prepare") do auto_html_methods = self.methods.select { |m| m=~/^auto_html_prepare_/ } auto_html_methods.each do |method| self.send(method) end end raw_attrs = { raw_attrs => AutoHtmlFor.auto_html_for_options[:htmlized_attribute_suffix] } unless raw_attrs.is_a?(Hash) raw_attrs.each do |raw_attr, suffix| define_method("#{raw_attr}#{suffix}=") do |val| write_attribute("#{raw_attr}#{suffix}", val) end define_method("#{raw_attr}#{suffix}") do read_attribute("#{raw_attr}#{suffix}") || send("auto_html_prepare_#{raw_attr}#{suffix}") end define_method("auto_html_prepare_#{raw_attr}#{suffix}") do self.send(raw_attr.to_s + suffix + "=", auto_html(self.send(raw_attr), &proc)) end end end end module InstanceMethods include AutoHtml end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
marcosinger-auto_html-1.3.5 | lib/auto_html/auto_html_for.rb |
marcosinger-auto_html-1.3.4 | lib/auto_html/auto_html_for.rb |