-
Notifications
You must be signed in to change notification settings - Fork 21
/
class-table-inheritance.gemspec
27 lines (22 loc) · 1.1 KB
/
class-table-inheritance.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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 = ["[email protected]"]
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.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.required_ruby_version = '>= 2.5', '< 4'
s.add_runtime_dependency 'activerecord', '~>6.0'
s.add_development_dependency 'minitest-reporters','~>1.1'
s.add_development_dependency 'rake', '>=11'
s.add_development_dependency 'sqlite3', '~>1.3'
end