forked from voxpupuli/json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json-schema.gemspec
27 lines (23 loc) · 894 Bytes
/
json-schema.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
require 'yaml'
version_yaml = YAML.load(File.open('VERSION.yml').read)
version = "#{version_yaml['major']}.#{version_yaml['minor']}.#{version_yaml['patch']}"
gem_name = "json-schema"
Gem::Specification.new do |s|
s.name = gem_name
s.version = version
s.authors = ["Kenny Hoxworth"]
s.email = "[email protected]"
s.homepage = "https://github.com/ruby-json-schema/json-schema/tree/master"
s.summary = "Ruby JSON Schema Validator"
s.files = Dir[ "lib/**/*", "resources/*.json" ]
s.require_path = "lib"
s.extra_rdoc_files = ["README.md","LICENSE.md"]
s.required_ruby_version = ">= 1.9"
s.license = "MIT"
s.required_rubygems_version = ">= 1.8"
s.add_development_dependency "rake"
s.add_development_dependency "minitest", '~> 5.0'
s.add_development_dependency "webmock"
s.add_development_dependency "bundler"
s.add_runtime_dependency "addressable", '>= 2.4'
end