Created
February 4, 2009 02:35
-
-
Save neerajsingh0101/57889 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Validateable | |
[:save, :save!, :update_attribute].each{|attr| define_method(attr){}} | |
def method_missing(symbol, *params) | |
if(symbol.to_s =~ /(.*)_before_type_cast$/) | |
send($1) | |
end | |
end | |
def self.append_features(base) | |
super | |
base.send(:include, ActiveRecord::Validations) | |
base.extend ClassMethods | |
base.send :include, ActiveSupport::Callbacks | |
base.define_callbacks *ActiveRecord::Validations::VALIDATIONS | |
end | |
module ClassMethods | |
def self_and_descendents_from_active_record | |
klass = self | |
classes = [klass] | |
while klass != klass.base_class | |
classes << klass = klass.superclass | |
end | |
classes | |
rescue | |
[self] | |
end | |
def human_name(options = {}) | |
defaults = self_and_descendents_from_active_record.map do |klass| | |
:"#{klass.name.underscore}" | |
end | |
defaults << self.name.humanize | |
I18n.translate(defaults.shift, {:scope => [:activerecord, :models], :count => 1, :default => defaults}.merge(options)) | |
end | |
def human_attribute_name(attribute_key_name, options = {}) | |
defaults = self_and_descendents_from_active_record.map do |klass| | |
:"#{klass.name.underscore}.#{attribute_key_name}" | |
end | |
defaults << options[:default] if options[:default] | |
defaults.flatten! | |
defaults << attribute_key_name.humanize | |
options[:count] ||= 1 | |
I18n.translate(defaults.shift, options.merge(:default => defaults, :scope => [:activerecord, :attributes])) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment