forked from emmanuel/aequitas
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaequitas.gemspec
24 lines (21 loc) · 916 Bytes
/
aequitas.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
#encoding: utf-8
Gem::Specification.new do |s|
s.name = 'aequitas'
s.version = '0.0.3'
s.authors = ['Markus Schirp']
s.email = ['mbj@schirp-dso.com']
s.homepage = 'https://github.com/mbj/aequitas'
s.summary = %q{Library for performing validations on Ruby objects.}
s.description = %q{Library for validating Ruby objects with rich metadata support.}
# git ls-files
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = []
s.require_paths = ['lib']
s.add_dependency('backports', [ '~> 3.0', '>= 3.0.3' ])
s.add_dependency('anima', '~> 0.0.6')
s.add_dependency('adamantium', '~> 0.0.7')
s.add_dependency('equalizer', '~> 0.0.5')
s.add_dependency('abstract_type', '~> 0.0.5')
s.add_dependency('descendants_tracker', '~> 0.0.1')
end