Sha256: 334548216f6a8920d363aacd889e12ad8c1835adbbab0939ed00ca7810f11bc9

Contents?: true

Size: 923 Bytes

Versions: 1

Compression:

Stored size: 923 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "half_shell"
  s.version     = HalfShell::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Chris Gibson"]
  s.email       = ["chrislgibson@gmail.com"]
  s.homepage    = "http://github.com/chrisgibson/half_shell"
  s.summary     = %q{a simple ruby gem for executing shell commands}
  s.description = %q{a bit cleaner than built-in methods of executing commands and less complicated under the hood than systemu}

  s.rubyforge_project = "half_shell"

  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"]
  
  s.add_dependency 'open4'
  s.add_development_dependency 'minitest'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
half_shell-0.0.3 half_shell.gemspec