forked from davetron5000/optparse-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
optparse_plus.gemspec
28 lines (26 loc) · 1.31 KB
/
optparse_plus.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
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "optparse_plus/version"
Gem::Specification.new do |s|
s.name = "optparse-plus"
s.version = OptparsePlus::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["davetron5000"]
s.email = ["davetron5000 at gmail.com"]
s.homepage = "http://github.com/davetron5000/optparse-plus"
s.summary = %q{Wrapper around the Standard Library's Option Parser to make CLIs Easier}
s.description = %q{OptparsePlus provides a lot of small but useful features for developing a command-line app, including an opinionated bootstrapping process, some helpful integration test support, and some classes to bridge logging and output into a simple, unified, interface}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = "optparse_plus"
s.bindir = "exe"
s.require_paths = ["lib"]
s.add_dependency("bundler")
s.add_development_dependency("rake")
s.add_development_dependency("rdoc","~> 6.0")
s.add_development_dependency("sdoc")
s.add_development_dependency("mocha")
s.add_development_dependency("minitest")
s.add_development_dependency("rspec") # needed for testing the generated tests
s.add_development_dependency("i18n")
end