File: declarative-option.gemspec

package info (click to toggle)
ruby-declarative-option 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 116; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 802 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path('../lib/declarative/option/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Nick Sutterer"]
  gem.email         = ["apotonick@gmail.com"]
  gem.description   = %q{Dynamic options.}
  gem.summary       = %q{Dynamic options to evaluate at runtime.}
  gem.homepage      = "https://github.com/apotonick/declarative-option"
  gem.license       = "MIT"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = "declarative-option"
  gem.require_paths = ["lib"]
  gem.version       = Declarative::Option::VERSION

  gem.add_development_dependency "rake"
  gem.add_development_dependency "minitest"
end