Sha256: 6793d80ba974e0615395774f144cf0f4522547863711e2f0ed8eb4674eb5cf98
Contents?: true
Size: 1.06 KB
Versions: 22
Compression:
Stored size: 1.06 KB
Contents
module DisablePrefixCheck extend ActiveSupport::Concern module ClassMethods def check_prefix_options(options) end # `flexible = true` is hack to allow multiple things through the same AR class def conditional_prefix(resource, flexible = false) resource_id = "#{resource}_id".to_sym resource_type = flexible ? ":#{resource}" : resource.to_s.pluralize init_prefix_explicit resource_type, resource_id define_singleton_method :prefix do |options| resource_type = options[resource] if flexible options[resource_id].nil? ? "/admin/" : "/admin/#{resource_type}/#{options[resource_id]}/" end define_singleton_method :instantiate_record do |record, prefix_options = {}| new_record(record).tap do |resource| resource.prefix_options = prefix_options unless prefix_options.blank? end end end def new_record(record) if ActiveSupport::VERSION::MAJOR == 3 && ActiveSupport::VERSION::MINOR == 0 new(record) else new(record, true) end end end end
Version data entries
22 entries across 22 versions & 1 rubygems