forked from apotonick/declarative
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeclarative.gemspec
More file actions
25 lines (22 loc) · 935 Bytes
/
declarative.gemspec
File metadata and controls
25 lines (22 loc) · 935 Bytes
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'declarative/version'
Gem::Specification.new do |spec|
spec.name = "declarative"
spec.version = Declarative::VERSION
spec.authors = ["Nick Sutterer"]
spec.email = ["apotonick@gmail.com"]
spec.summary = %q{DSL for nested schemas.}
spec.description = %q{DSL for nested generic schemas with inheritance and refining.}
spec.homepage = "https://github.com/apotonick/declarative"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test)/})
end
spec.test_files = spec.files.grep(%r{^(test)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.3.0'
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
spec.add_development_dependency "minitest-line"
end