git-fogbugz 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/VERSION +1 -1
- data/lib/git_fogbugz.rb +3 -2
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/lib/git_fogbugz.rb
CHANGED
|
@@ -101,8 +101,9 @@ BANNER
|
|
|
101
101
|
|
|
102
102
|
opts.on_tail('-h', '--help') { output_version; puts opts; exit 0 }
|
|
103
103
|
end
|
|
104
|
-
opts.parse!(@arguments) rescue return false
|
|
104
|
+
@opts.parse!(@arguments) rescue return false
|
|
105
105
|
process_options
|
|
106
|
+
true
|
|
106
107
|
end
|
|
107
108
|
|
|
108
109
|
# Performs post-parse processing on options
|
|
@@ -177,7 +178,7 @@ BANNER
|
|
|
177
178
|
id = commit.id[0,7]
|
|
178
179
|
files = commit.diffs.each do |d|
|
|
179
180
|
resp = fogbugz.get(make_url($2, '00000', id, d.a_path))
|
|
180
|
-
|
|
181
|
+
stderr.puts resp.body if @options.verbose
|
|
181
182
|
end
|
|
182
183
|
end
|
|
183
184
|
return
|