-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparametric.gemspec
23 lines (20 loc) · 935 Bytes
/
parametric.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'parametric/version'
Gem::Specification.new do |spec|
spec.name = "parametric"
spec.version = Parametric::VERSION
spec.authors = ["Ismael Celis"]
spec.email = ["[email protected]"]
spec.summary = %q{DSL for declaring allowed parameters with options, regexp patern and default values.}
spec.description = %q{Useful for modelling search or form objects, white-listed query parameters and safe parameter defaults.}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", '3.12.0'
spec.add_development_dependency "byebug"
end