Sha256: 33a1c45a665a2bd08f402fa258e9a9931b7d04947d235d59b927e5d109c8d0e3

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

require File.expand_path("lib/ing/version", File.dirname(__FILE__))

Gem::Specification.new do |s|
  s.name        = "ing"
  s.version     = Ing::VERSION
  s.authors     = ["Eric Gjertsen"]
  s.email       = ["ericgj72@gmail.com"]
  s.homepage    = "https://github.com/ericgj/ing"
  s.summary     = %q{Vanilla ruby command-line scripting}
  s.description = %q{
An alternative to Rake and Thor, Ing has a command-line syntax similar to 
Thor's, and it incorporates Thor's (Rails') generator methods and shell 
conventions. But unlike Thor or Rake, it does not define its own DSL. Your tasks
correspond to plain ruby classes and methods. Ing just handles routing from the 
command line to them, and setting options. Your classes (or even Procs) do the 
rest.
  }

  s.rubyforge_project = ""

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- test/*`.split("\n")
  s.require_paths = ["lib"]
  s.executables   << 'ing'
  
  s.requirements << "ruby >= 1.9"
    
  s.add_development_dependency 'fakeweb'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ing-0.1.1 ing.gemspec