Sha256: be8ba92ef3f3daaeb29ecb22f0d2b794b2e5948573ebf98cbeedaae8af77e3d4
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
begin require_relative "lib/shell/version" rescue LoadError # for Ruby core repository require_relative "version" end Gem::Specification.new do |spec| spec.name = "shell" spec.version = Shell::VERSION spec.authors = ["Keiju ISHITSUKA"] spec.email = ["keiju@ruby-lang.org"] spec.summary = %q{An idiomatic Ruby interface for common UNIX shell commands.} spec.description = %q{An idiomatic Ruby interface for common UNIX shell commands.} spec.homepage = "https://github.com/ruby/shell" spec.license = "BSD-2-Clause" spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/shell.rb", "lib/shell/builtin-command.rb", "lib/shell/command-processor.rb", "lib/shell/error.rb", "lib/shell/filter.rb", "lib/shell/process-controller.rb", "lib/shell/system-command.rb", "lib/shell/version.rb", "shell.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shell-0.7 | shell.gemspec |