Sha256: cfb9df39de5ba7486eecba16d7e741e1cebe9828dba7732b8fb2cc7bbee1b2d7

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

# Make sure we get the gli that's local
require File.join([File.dirname(__FILE__),"lib","gli","version.rb"])

spec = Gem::Specification.new do |s|
  s.name = "gli"
  s.version = GLI::VERSION
  s.licenses = ["Apache-2.0"]
  s.author = "David Copeland"
  s.email = "davidcopeland@naildrivin5.com"
  s.homepage = "http://davetron5000.github.io/gli"
  s.platform = Gem::Platform::RUBY
  s.summary = "Build command-suite CLI apps that are awesome."
  s.description = "Build command-suite CLI apps that are awesome.  Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app"

  s.metadata = {
    'bug_tracker_uri'   => 'https://github.com/davetron5000/gli/issues',
    'changelog_uri'     => 'https://github.com/davetron5000/gli/releases',
    'documentation_uri' => 'https://davetron5000.github.io/gli/rdoc/index.html',
    'homepage_uri'      => 'https://davetron5000.github.com/gli/',
    'source_code_uri'   => 'https://github.com/davetron5000/gli/',
    'wiki_url'          => 'https://github.com/davetron5000/gli/wiki',
  }

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.require_paths = ["lib"]

  s.extra_rdoc_files = ["README.rdoc", "gli.rdoc"]
  s.rdoc_options << "--title" << "Git Like Interface" << "--main" << "README.rdoc"

  s.bindir      = "exe"
  s.executables = "gli"

  s.add_development_dependency("rake")
  s.add_development_dependency("rdoc")
  s.add_development_dependency("rainbow", "~> 1.1", "~> 1.1.1")
  s.add_development_dependency("sdoc")
  s.add_development_dependency("minitest", "~> 5")
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gli-2.22.0 gli.gemspec
gli-2.21.5 gli.gemspec