Sha256: 218431c576fb8229866c5db87b3679ccf12231c1c6e9f83788b2fb9f775dc32d

Contents?: true

Size: 707 Bytes

Versions: 1

Compression:

Stored size: 707 Bytes

Contents

$:.push File.expand_path("../lib", __FILE__)
require 'globals'

Gem::Specification.new do |gem|
  gem.name    = 'doit'
  gem.version = Globals::VERSION
  gem.summary = "Simple local & remote script executor"
  gem.description = "Run good old shell/bash scripts locally or remotely(ssh)."

  gem.authors  = ['Dittmar Krall']
  gem.email    = 'dittmar.krall@matique.de'
  gem.homepage = 'http://www.matique.de'
  gem.license  = 'MIT'

  gem.add_dependency 'micro-optparse', '~> 0'

  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = `git ls-files -- test`.split("\n")
  gem.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.require_paths = ["lib"]

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
doit-0.2.4 doit.gemspec