forked from department-of-veterans-affairs/apivore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapivore.gemspec
More file actions
28 lines (26 loc) · 1.25 KB
/
apivore.gemspec
File metadata and controls
28 lines (26 loc) · 1.25 KB
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
$:.push File.expand_path("../lib", __FILE__)
require 'apivore/version'
Gem::Specification.new do |s|
s.name = 'apivore'
s.version = Apivore::VERSION
s.summary = 'Tests your API against its OpenAPI (Swagger) 2.0 spec'
s.description = 'Tests your rails API using its OpenAPI (Swagger) description of end-points, models, and query parameters.'
s.authors = ['Charles Horn']
s.email = 'charles.horn@gmail.com'
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']
s.add_runtime_dependency 'actionpack', '>= 4'
s.add_runtime_dependency 'hashie', '~> 5.0'
s.add_runtime_dependency 'json-schema', '~> 4.0'
s.add_runtime_dependency 'rspec', '~> 3'
s.add_runtime_dependency 'rspec-expectations', '~> 3.1'
s.add_runtime_dependency 'rspec-mocks', '~> 3.1'
s.add_development_dependency 'activesupport', '>= 4'
s.add_development_dependency 'pry', '~> 0'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'rspec-rails', '~> 3'
s.add_development_dependency 'test-unit', '~> 3'
end