Sha256: 874da3daa54d1857ebbe78f90b1aa4cc73abdcfaba689443a6a46cf1e6ba0ed6
Contents?: true
Size: 925 Bytes
Versions: 2
Compression:
Stored size: 925 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_development_dependency "rake" s.add_development_dependency "minitest" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shell_command-0.1.1 | shell_command.gemspec |
shell_command-0.1.0 | shell_command.gemspec |