summaryrefslogtreecommitdiff
path: root/lib/shell
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-16 20:01:42 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-09-16 21:51:48 +0900
commit3bb1162cacf951794af7c9124dde002ceaed5b38 (patch)
tree6ac9f3d9710a3f16ec7c2bd372b15a5257dbc35a /lib/shell
parent2a39de193cc1e40b2e73cdbd24df280cb81638dd (diff)
Folded files in gemspec
Diffstat (limited to 'lib/shell')
-rw-r--r--lib/shell/shell.gemspec21
1 files changed, 17 insertions, 4 deletions
diff --git a/lib/shell/shell.gemspec b/lib/shell/shell.gemspec
index 1c27670ca4..85f117cdae 100644
--- a/lib/shell/shell.gemspec
+++ b/lib/shell/shell.gemspec
@@ -16,11 +16,24 @@ Gem::Specification.new do |spec|
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.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"]
-
- spec.add_development_dependency "bundler"
- spec.add_development_dependency "rake"
end