Sha256: e756e4c7e8262f54e1063f68d9b1b0f7045ff656ec0ebb1ce51b08377a0f186c
Contents?: true
Size: 1.69 KB
Versions: 5
Compression:
Stored size: 1.69 KB
Contents
require 'fast_timestamp' require 'common_name' module Sniff module Emitter def self.included(target) target.instance_eval do extend ClassMethods include CommonName end end def parent_class Emitter end def visible_effective_characteristics characteristics.effective.reject { |_, c| c.hidden? } end def retired? has_attribute?(:retirement) and retirement end def pattern? self.class.pattern? end module ClassMethods def from_params_hash(params = Hash.new) resolved_params = Hash.new instance = new associations = reflect_on_all_associations params.each do |k, v| next if v.blank? c = characteristics[k.to_sym] next if c.nil? if associations.map(&:name).include?(c.name.to_sym) association = associations.find { |a| a.name == c.name.to_sym } klass = association.options[:class_name] || association.name.to_s.pluralize.classify klass = klass.constantize if v.is_a?(Hash) # h[:origin_airport][:iata_code] => 'MIA' attr_name, attr_value = v.to_a.flatten[0, 2] resolved_params[k] = klass.send "find_by_#{attr_name}", attr_value else # h[:origin_airport] => 'MIA' resolved_params[k] = klass.send "find_by_#{k}", v end else resolved_params[k] = v end end new resolved_params end def _common_name name.underscore end def pattern? common_name.ends_with? 'pattern' end end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
sniff-0.0.11 | lib/sniff/emitter.rb |
sniff-0.0.10 | lib/sniff/emitter.rb |
sniff-0.0.9 | lib/sniff/emitter.rb |
sniff-0.0.8 | lib/sniff/emitter.rb |
sniff-0.0.7 | lib/sniff/emitter.rb |