Sha256: 53bd5e5fff836e28398cf655f4e434649e1cd3ca4209fc7053714f79a4bb85e4

Contents?: true

Size: 1.15 KB

Versions: 10

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/version'

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('pry', '~> 0.9')
  spec.add_development_dependency('rake', '~> 0')
  spec.add_development_dependency('yard', '0.8.7.4')
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
cliutils-1.2.3 cliutils.gemspec
cliutils-1.2.2 cliutils.gemspec
cliutils-1.2.1 cliutils.gemspec
cliutils-1.2.0 cliutils.gemspec
cliutils-1.1.1 cliutils.gemspec
cliutils-1.1.0 cliutils.gemspec
cliutils-1.0.7 cliutils.gemspec
cliutils-1.0.6 cliutils.gemspec
cliutils-1.0.5 cliutils.gemspec
cliutils-1.0.4 cliutils.gemspec