-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathrein.gemspec
27 lines (23 loc) · 1.11 KB
/
rein.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rein/version'
Gem::Specification.new do |spec|
spec.name = 'rein'
spec.version = Rein::VERSION
spec.author = 'Joshua Bassett'
spec.email = '[email protected]'
spec.summary = 'Database constraints made easy for ActiveRecord.'
spec.description = 'Rein adds bunch of methods to your ActiveRecord migrations so you can easily tame your database.'
spec.homepage = 'http://github.com/nullobject/rein'
spec.license = 'MIT'
spec.files = `git ls-files --exclude-standard -z -- lib/* CHANGELOG.md LICENSE.md README.md`.split("\x0")
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activerecord', '>= 4.0.0'
spec.add_runtime_dependency 'activesupport', '>= 4.0.0'
spec.add_development_dependency 'appraisal', '~> 2.2.0'
spec.add_development_dependency 'pg', '~> 0.21.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 12.3.2'
spec.add_development_dependency 'rspec', '~> 3.8.0'
spec.add_development_dependency 'rubocop', '~> 0.67.2'
end