death 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/{death → bin/death} +0 -0
- data/death.gemspec +3 -2
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
data/{death → bin/death}
RENAMED
|
File without changes
|
data/death.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{death}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["koic"]
|
|
@@ -18,13 +18,14 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.files = [
|
|
19
19
|
"README",
|
|
20
20
|
"VERSION",
|
|
21
|
-
"death",
|
|
21
|
+
"bin/death",
|
|
22
22
|
"death.gemspec"
|
|
23
23
|
]
|
|
24
24
|
s.homepage = %q{http://github.com/koic/death-command}
|
|
25
25
|
s.require_paths = ["lib"]
|
|
26
26
|
s.rubygems_version = %q{1.6.2}
|
|
27
27
|
s.summary = %q{kill command wrapper. say "DEATH" with death voice.}
|
|
28
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
28
29
|
|
|
29
30
|
if s.respond_to? :specification_version then
|
|
30
31
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: death
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -15,14 +15,15 @@ dependencies: []
|
|
|
15
15
|
description: kill command wrapper. say "DEATH" with death voice. Operating environment
|
|
16
16
|
is MacOS X only.
|
|
17
17
|
email: koic.ito@gmail.com
|
|
18
|
-
executables:
|
|
18
|
+
executables:
|
|
19
|
+
- death
|
|
19
20
|
extensions: []
|
|
20
21
|
extra_rdoc_files:
|
|
21
22
|
- README
|
|
22
23
|
files:
|
|
23
24
|
- README
|
|
24
25
|
- VERSION
|
|
25
|
-
- death
|
|
26
|
+
- bin/death
|
|
26
27
|
- death.gemspec
|
|
27
28
|
has_rdoc: true
|
|
28
29
|
homepage: http://github.com/koic/death-command
|