Sha256: 7c2b23dfddc6147d768e39f421f100aa20cad66264e8bef36549d3887a85fef5
Contents?: true
Size: 744 Bytes
Versions: 2
Compression:
Stored size: 744 Bytes
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/commandeer', __FILE__) Gem::Specification.new do |gem| gem.authors = ["John E. Vincent"] gem.email = ["lusis.org+github.com@gmail.com"] gem.description = %q{Class-based CLI utility} gem.summary = "Commandeer allows you to make any class a git style command or subcommand" gem.homepage = "https://github.com/lusis/commandeer" gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.name = "commandeer" gem.require_paths = ["lib"] gem.version = Commandeer::VERSION end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
commandeer-0.1.0 | commandeer.gemspec |
commandeer-0.0.1 | commandeer.gemspec |