git_utils 1.0.2 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest.txt +2 -2
- data/{script → bin}/gem_publish.sh +3 -0
- data/git_utils.gemspec +4 -3
- data/lib/git_utils.rb +1 -1
- metadata +8 -7
- /data/{script → bin}/git_commit.sh +0 -0
data/Manifest.txt
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
bin/gem_publish.sh
|
2
|
+
bin/git_commit.sh
|
1
3
|
doc/created.rid
|
2
4
|
doc/GitUtils.html
|
3
5
|
doc/images/brick.png
|
@@ -36,7 +38,5 @@ Manifest_txt.html
|
|
36
38
|
PostInstall.txt
|
37
39
|
PostInstall_txt.html
|
38
40
|
README.rdoc
|
39
|
-
script/gem_publish.sh
|
40
|
-
script/git_commit.sh
|
41
41
|
spec/git_utils_spec.rb
|
42
42
|
spec/spec_helper.rb
|
data/git_utils.gemspec
CHANGED
@@ -5,13 +5,14 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{git_utils}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = [%q{Glenn Nagel}]
|
12
12
|
s.date = %q{2011-09-09}
|
13
13
|
s.description = %q{A gem that provides simple git & gem utility scripts.}
|
14
14
|
s.email = [%q{glenn@mercury-wireless.com}]
|
15
|
+
s.executables = [%q{gem_publish.sh}, %q{git_commit.sh}]
|
15
16
|
s.extra_rdoc_files = [
|
16
17
|
"History.txt",
|
17
18
|
"Manifest.txt",
|
@@ -25,6 +26,8 @@ Gem::Specification.new do |s|
|
|
25
26
|
"PostInstall.txt",
|
26
27
|
"PostInstall_txt.html",
|
27
28
|
"README.rdoc",
|
29
|
+
"bin/gem_publish.sh",
|
30
|
+
"bin/git_commit.sh",
|
28
31
|
"doc/GitUtils.html",
|
29
32
|
"doc/created.rid",
|
30
33
|
"doc/images/brick.png",
|
@@ -56,8 +59,6 @@ Gem::Specification.new do |s|
|
|
56
59
|
"doc/rdoc.css",
|
57
60
|
"git_utils.gemspec",
|
58
61
|
"lib/git_utils.rb",
|
59
|
-
"script/gem_publish.sh",
|
60
|
-
"script/git_commit.sh",
|
61
62
|
"spec/git_utils_spec.rb",
|
62
63
|
"spec/spec_helper.rb"
|
63
64
|
]
|
data/lib/git_utils.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 5
|
10
|
+
version: 1.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Glenn Nagel
|
@@ -51,8 +51,9 @@ dependencies:
|
|
51
51
|
description: A gem that provides simple git & gem utility scripts.
|
52
52
|
email:
|
53
53
|
- glenn@mercury-wireless.com
|
54
|
-
executables:
|
55
|
-
|
54
|
+
executables:
|
55
|
+
- gem_publish.sh
|
56
|
+
- git_commit.sh
|
56
57
|
extensions: []
|
57
58
|
|
58
59
|
extra_rdoc_files:
|
@@ -67,6 +68,8 @@ files:
|
|
67
68
|
- PostInstall.txt
|
68
69
|
- PostInstall_txt.html
|
69
70
|
- README.rdoc
|
71
|
+
- bin/gem_publish.sh
|
72
|
+
- bin/git_commit.sh
|
70
73
|
- doc/GitUtils.html
|
71
74
|
- doc/created.rid
|
72
75
|
- doc/images/brick.png
|
@@ -98,8 +101,6 @@ files:
|
|
98
101
|
- doc/rdoc.css
|
99
102
|
- git_utils.gemspec
|
100
103
|
- lib/git_utils.rb
|
101
|
-
- script/gem_publish.sh
|
102
|
-
- script/git_commit.sh
|
103
104
|
- spec/git_utils_spec.rb
|
104
105
|
- spec/spec_helper.rb
|
105
106
|
homepage: https://github.com/gnagel/mercury-wireless-public/tree/master/ruby/git_utils
|
File without changes
|