diff options
author | Hiroshi SHIBATA <[email protected]> | 2019-09-20 12:56:18 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2019-09-20 12:56:18 +0900 |
commit | 3b56a0934fa503b518e8302ed32f9124740d896b (patch) | |
tree | 51248684f6e5306516ae122518b1ca299da5581b /lib/shell/shell.gemspec | |
parent | 67a6662032d0a7c4af07f44c2046cd0ed2d7d253 (diff) |
Removed Shell from the ruby repository.
Diffstat (limited to 'lib/shell/shell.gemspec')
-rw-r--r-- | lib/shell/shell.gemspec | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/shell/shell.gemspec b/lib/shell/shell.gemspec deleted file mode 100644 index 85f117cdae..0000000000 --- a/lib/shell/shell.gemspec +++ /dev/null @@ -1,39 +0,0 @@ -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 = ["[email protected]"] - - 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 = [ - "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"] -end |