git-commit-story 0.1.1 → 0.1.2
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/bin/git-commit-story +0 -1
- data/bin/git-cs +0 -1
- data/git-commit-story.gemspec +1 -1
- metadata +1 -1
data/bin/git-commit-story
CHANGED
@@ -12,7 +12,6 @@ class GitCommitStoryRunner
|
|
12
12
|
parser = OptionParser.new do |opts|
|
13
13
|
opts.banner = "Usage: git commit-story --message 'message' --story 'story'"
|
14
14
|
opts.on("-m", "--message MESSAGE", "The commit message") do |message|
|
15
|
-
puts "message: #{message}"
|
16
15
|
@message = message
|
17
16
|
end
|
18
17
|
opts.on("-s", "--story STORY", "The story ID (This can be the Pivotal id, AgileZen id, or any label)") do |story_id|
|
data/bin/git-cs
CHANGED
@@ -12,7 +12,6 @@ class GitCommitStoryRunner
|
|
12
12
|
parser = OptionParser.new do |opts|
|
13
13
|
opts.banner = "Usage: git commit-story --message 'message' --story 'story'"
|
14
14
|
opts.on("-m", "--message MESSAGE", "The commit message") do |message|
|
15
|
-
puts "message: #{message}"
|
16
15
|
@message = message
|
17
16
|
end
|
18
17
|
opts.on("-s", "--story STORY", "The story ID (This can be the Pivotal id, AgileZen id, or any label)") do |story_id|
|
data/git-commit-story.gemspec
CHANGED
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
|
|
2
2
|
s.name = "git-commit-story"
|
3
3
|
s.executables << "git-commit-story"
|
4
4
|
s.executables << "git-cs"
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
s.date = "2013-04-30"
|
7
7
|
s.summary = "StreamSend git commit wrapper"
|
8
8
|
s.description = "Thin wrapper around git commit that adds a story id to commit messages"
|