thombruce/activerecord-chemistry

View on GitHub
lib/activerecord/chemistry/actable.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'activerecord/chemistry/actable/migration'
require 'activerecord/chemistry/actable/relation'

module ActiveRecord
  module Chemistry
    module Actable
      include ActiveRecord::Chemistry::Actable::Migration
      include ActiveRecord::Chemistry::Actable::Relation
    end
  end
end