Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathshell.gemspec
More file actions
Latest commit
42 lines (38 loc) · 1.13 KB
/
Copy pathshell.gemspec
File metadata and controls
42 lines (38 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
begin
require_relative"lib/shell/version"
rescueLoadError
# for Ruby core repository
require_relative"version"
end
Gem::Specification.newdo |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=[
"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.require_paths=["lib"]
spec.add_runtime_dependency"e2mmap"
spec.add_runtime_dependency"sync"
end