Sha256: b1c570c0fbcf721eada5fff8d8b40d332688a457db70d8515d944039ce2e3751
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
require 'ostruct' module Pickle class Config attr_writer :adapters, :factories, :mappings, :predicates def initialize(&block) configure(&block) if block_given? end def configure(&block) yield(self) end def adapters @adapters ||= [:machinist, :factory_girl, :active_record] end def adapter_classes adapters.map {|a| a.is_a?(Class) ? a : "pickle/adapter/#{a}".classify.constantize} end def factories @factories ||= adapter_classes.reverse.inject({}) do |factories, adapter| factories.merge(adapter.factories.inject({}){|h, f| h.merge(f.name => f)}) end end def factory_names factories.keys end def predicates @predicates ||= Pickle::Adapter.model_classes.map do |klass| klass.public_instance_methods.select{|m| m =~ /\?$/} + klass.column_names end.flatten.uniq end def mappings @mappings ||= [] end # Usage: map 'me', 'myself', 'I', :to => 'user: "me"' def map(*args) options = args.extract_options! raise ArgumentError, "Usage: map 'search' [, 'search2', ...] :to => 'replace'" unless args.any? && options[:to].is_a?(String) search = args.size == 1 ? args.first.to_s : "(?:#{args.join('|')})" self.mappings << OpenStruct.new(:search => search, :replace => options[:to]) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ianwhite-pickle-0.1.5 | lib/pickle/config.rb |