Sha256: 758750690eb0759367f7df934b2c084bdf27e2f049acba5982fb77ee518753b9
Contents?: true
Size: 1.09 KB
Versions: 9
Compression:
Stored size: 1.09 KB
Contents
require 'rails' require 'active_record' require 'testing/rspec' # Power Enum allows you to treat instances of your ActiveRecord models as # though they were an enumeration of values. It allows you to cleanly solve # many of the problems that the traditional Rails alternatives handle poorly # if at all. It is particularly suitable for scenarios where your Rails # application is not the only user of the database, such as when it's used for # analytics or reporting. class PowerEnum < Rails::Engine config.autoload_paths << File.expand_path(File.join(__FILE__, "../")) initializer 'power_enum' do ActiveSupport.on_load(:active_record) do include PowerEnum::Enumerated include PowerEnum::HasEnumerated ActiveRecord::Base.module_eval do class << self prepend ::PowerEnum::Reflection end end ActiveRecord::ConnectionAdapters.module_eval do include PowerEnum::Schema::SchemaStatements end ActiveRecord::Migration::CommandRecorder.class_eval do include PowerEnum::Migration::CommandRecorder end end end end
Version data entries
9 entries across 9 versions & 1 rubygems