Sha256: d554f9e65c342ef09781d2ecb28f7fca7df83805dac6d4d017a4612bf68feecd

Contents?: true

Size: 960 Bytes

Versions: 7

Compression:

Stored size: 960 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "shell_command"
  s.version     = ShellCommand::VERSION
  s.authors     = ["Rob Gleeson"]
  s.email       = ["rob@flowof.info"]
  s.homepage    = "https://github.com/robgleeson/shell_command"
  
  s.summary     = %q{shell_command tries to provide a better interface for 
                     communicating with commands you spawn on the shell}

  s.description = s.summary

  s.rubyforge_project = "shell_command"

  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.required_ruby_version = '~> 1.9.1'

  s.add_runtime_dependency "open4"
  s.add_development_dependency "rake"
  s.add_development_dependency "minitest"

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
shell_command-0.2.6 shell_command.gemspec
shell_command-0.2.5 shell_command.gemspec
shell_command-0.2.4 shell_command.gemspec
shell_command-0.2.3 shell_command.gemspec
shell_command-0.2.2 shell_command.gemspec
shell_command-0.2.1 shell_command.gemspec
shell_command-0.2.0 shell_command.gemspec