Sha256: 8f6a742f1571df9fb1111fef07b16ca48bab4a22357023ed4e80ff0b5e430190

Contents?: true

Size: 869 Bytes

Versions: 4

Compression:

Stored size: 869 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 command-line tools'
  s.description = 'Cri allows building easy-to-use command-line interfaces with support for subcommands.'
  s.license     = 'MIT'

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

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

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

  s.add_development_dependency('bundler', '~> 1.6')

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cri-2.9.1 cri.gemspec
cri-2.9.0 cri.gemspec
cri-2.8.0 cri.gemspec
cri-2.7.1 cri.gemspec