No commit activity in last 3 years
No release in over 3 years
Single table inheritance mechanism built on integer types
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

< 6.0, >= 3.0
< 6.0, >= 3.0
 Project Readme
  class Post < ActiveRecord::Base
    uses_integer_inheritance
  end

  class Article < Post
  end

  class Publication < Post
  end

  # Add to initializers or to some script that is not reloaded:
  # (this adds support for reloading in development mode. See ActionDispatch::Reloader)
  IntegerInheritance.describe do

    # Use full class name here (only strings!)
    with 'Post' do
      map 1, to: 'Post'
      map 2, to: 'Article'

      # You can specify more than one type
      map 3, 4, to: 'Publication'
    end
  end

Gemfile

gem 'integer-inheritance', '~> 1.0'