Sha256: b3fbe9dc416cc72b55d33b335a88910df9209a84f95abf244f4ea52cfa5b11f7

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cliutils/constants'

Gem::Specification.new do |spec|
  spec.name             = "cliutils"
  spec.version          = CLIUtils::VERSION
  spec.authors          = ["Aaron Bach"]
  spec.email            = ["bachya1208@googlemail.com"]
  spec.summary          = 'Sugary goodness for Ruby CLI apps.'
  spec.description      = 'A library of functionality designed to alleviate common tasks and headaches when developing command-line (CLI) apps in Ruby.'
  spec.homepage         = "http://www.bachyaproductions.com/cliutils-ruby-library-cli-apps/"
  spec.license          = "MIT"
                        
  spec.files            = `git ls-files -z`.split("\x0")
  spec.executables      = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files       = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths    = ["lib"]

  spec.add_development_dependency('bundler', '~> 1.5')
  spec.add_development_dependency('rake', '~> 0')
  spec.add_development_dependency('yard', '0.8.7.4')
  spec.add_runtime_dependency('launchy', '2.4.2')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cliutils-2.0.3 cliutils.gemspec