forked from interagent/committee
-
Notifications
You must be signed in to change notification settings - Fork 1
/
committee.gemspec
33 lines (25 loc) · 1.12 KB
/
committee.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
32
33
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "committee"
s.version = "3.3.0"
s.summary = "A collection of Rack middleware to support JSON Schema."
s.authors = ["Brandur", "geemus (Wesley Beary)", "ota42y"]
s.homepage = "https://github.com/interagent/committee"
s.license = "MIT"
s.executables << "committee-stub"
s.files = Dir["{bin,lib,test}/**/*.rb"]
s.required_ruby_version = ">= 2.3.0"
s.add_dependency "json_schema", "~> 0.14", ">= 0.14.3"
s.add_dependency "rack", ">= 1.5"
s.add_dependency "openapi_parser", ">= 0.6.1"
s.add_development_dependency "minitest", "~> 5.3"
s.add_development_dependency "rack-test", "~> 0.6"
s.add_development_dependency "rake", "~> 12.3"
s.add_development_dependency "rr", "~> 1.1"
s.add_development_dependency "pry"
s.add_development_dependency "pry-byebug"
s.add_development_dependency "rubocop"
s.add_development_dependency "rubocop-performance"
s.add_development_dependency "simplecov"
end