Sha256: a5f1ca2812f9c5b5535423a0a940f6279348489b900b22920f8cc3e100d03c7a

Contents?: true

Size: 805 Bytes

Versions: 5

Compression:

Stored size: 805 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "command_exec/version"

Gem::Specification.new do |s|
  s.name        = "command_exec"
  s.version     = CommandExec::VERSION
  s.authors     = ["Max Meyer"]
  s.email       = ["dev@fedux.org"]
  s.homepage    = ""
  s.summary     = %q{Helper gem to exectue arbitrary shell commands}
  s.description = %q{This adds bells and whistles to ease shell command execution}

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

  # specify any dependencies here; for example:
  s.add_runtime_dependency 'POpen4'
  s.add_runtime_dependency 'colored'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
command_exec-0.1.3 command_exec.gemspec
command_exec-0.1.0 command_exec.gemspec
command_exec-0.0.3 command_exec.gemspec
command_exec-0.0.2 command_exec.gemspec
command_exec-0.0.1 command_exec.gemspec