Sha256: 136d514beba1679d2175974a1d6c59e0d589052f66fc846eeab8cfa2dea84f38

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 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.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.21.3 gli.gemspec
gli-2.21.2 gli.gemspec