forked from dleidisch-a9s/apivore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apivore.gemspec
31 lines (28 loc) · 1.27 KB
/
apivore.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
28
29
30
31
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = 'apivore'
s.version = '1.4.3'
s.date = '2015-12-08'
s.summary = "Tests your API against its Swagger 2.0 spec"
s.description = "Tests your rails API using its Swagger description of end-points, models, and query parameters."
s.authors = ["Charles Horn"]
s.email = '[email protected]'
s.files = ['lib/apivore.rb', 'data/swagger_2.0_schema.json', 'data/draft04_schema.json']
s.files += Dir['lib/apivore/*.rb']
s.files += Dir['data/custom_schemata/*.json']
s.homepage = 'http://github.com/westfieldlabs/apivore'
s.licenses = ['Apache 2.0', 'MIT']
s.add_runtime_dependency 'json-schema', '~> 2.5'
s.add_runtime_dependency 'rspec', '~> 3'
s.add_runtime_dependency 'rspec-expectations', '~> 3.1'
s.add_runtime_dependency 'rspec-mocks', '~> 3.1'
s.add_runtime_dependency 'actionpack', '~> 4'
s.add_runtime_dependency 'hashie', '~> 3.3'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'rspec-rails', '~> 3'
s.add_development_dependency 'activesupport', '~> 4'
if RUBY_VERSION >= '2.2.0'
s.add_development_dependency 'test-unit', '~> 3'
end
end