Sha256: 0766c7b092837323f0036eac89c9b37e150ca69dd20678d23a7476bc18268433
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require 'class-table-inheritance/version' Gem::Specification.new do |s| s.name = "class-table-inheritance" s.version = ClassTableInheritance::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Bruno Frank"] s.email = ["bfscordeiro@gmail.com"] s.homepage = "https://github.com/brunofrank/class-table-inheritance" s.summary = %q{ActiveRecord plugin designed to allow simple multiple table (class) inheritance.} s.description = %q{ActiveRecord plugin designed to allow simple multiple table (class) inheritance.} s.rubyforge_project = "class-table-inheritance" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency 'activerecord', '>=4', '<5.1' s.add_development_dependency 'minitest-reporters','~>1.1' s.add_development_dependency 'rake', '>=11' s.add_development_dependency 'sqlite3', '~>1.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
class-table-inheritance-1.3.1 | class-table-inheritance.gemspec |