Sha256: 527d7c85bd7c10c4769e5be22af28db2d51d830d620a2d78d9d5c7910b3b2858

Contents?: true

Size: 1.33 KB

Versions: 1

Compression:

Stored size: 1.33 KB

Contents

# -*- 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("clean_test", "~> 1.0.1")
  s.add_development_dependency("mocha")
  s.add_development_dependency("rspec") # needed for testing the generated tests
  s.add_development_dependency("i18n")
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
optparse-plus-3.0.1 optparse_plus.gemspec