mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
935 B
26 lines
935 B
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
|