Sha256: 2c5ed34016407ba034d9acacff8d999505adf84fc75ad4e3647549b41c80d1c6

Contents?: true

Size: 1008 Bytes

Versions: 3

Compression:

Stored size: 1008 Bytes

Contents

# encoding: utf-8

$LOAD_PATH.unshift(File.expand_path('../lib/', __FILE__))
require 'cri/version'

Gem::Specification.new do |s|
  s.name        = 'cri'
  s.version     = Cri::VERSION
  s.homepage    = 'http://stoneship.org/software/cri/' # TODO CREATE A WEB SITE YOU SILLY PERSON
  s.summary     = 'a library for building easy-to-use commandline tools'
  s.description = 'Cri allows building easy-to-use commandline interfaces with support for subcommands.'

  s.author = 'Denis Defreyne'
  s.email  = 'denis.defreyne@stoneship.org'

  s.files              = Dir['[A-Z]*'] +
                         Dir['{lib,test}/**/*'] +
                         [ 'cri.gemspec', '.gemtest' ]
  s.require_paths      = [ 'lib' ]

  s.add_dependency('colored', '>= 1.2')

  s.add_development_dependency('rake')
  s.add_development_dependency('minitest')
  s.add_development_dependency('yard')

  s.rdoc_options     = [ '--main', 'README.md' ]
  s.extra_rdoc_files = [ 'ChangeLog', 'LICENSE', 'README.md', 'NEWS.md' ]
end

Version data entries

3 entries across 2 versions & 2 rubygems

Version Path
candlepin-api-0.4.0 bundle/ruby/1.9.1/gems/cri-2.4.0/cri.gemspec
candlepin-api-0.4.0 bundle/ruby/gems/cri-2.4.0/cri.gemspec
cri-2.4.0 cri.gemspec