git-flattr 0.0.9 → 0.0.10
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-flattr +2 -2
- data/lib/git-flattr.rb +1 -1
- data/lib/version.rb +1 -1
- metadata +1 -1
data/bin/git-flattr
CHANGED
|
@@ -68,8 +68,8 @@ command :commit do |c|
|
|
|
68
68
|
flattr = Flattr.new
|
|
69
69
|
puts commit_url
|
|
70
70
|
flattr.flattr commit_url
|
|
71
|
-
thing = flattr.thing_lookup
|
|
72
|
-
puts "Flattred #{
|
|
71
|
+
thing = flattr.thing_lookup commit_url
|
|
72
|
+
puts "Flattred #{commit_url} (#{thing.link})!"
|
|
73
73
|
exit 0
|
|
74
74
|
rescue Flattr::Error::Unauthorized => e
|
|
75
75
|
error e.message
|
data/lib/git-flattr.rb
CHANGED
data/lib/version.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION="0.0.
|
|
1
|
+
VERSION="0.0.10"
|