tipjar 0.1.192 → 0.1.193
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/lib/bitbot/plugin/tip.rb +2 -2
- data/tipjar.gemspec +1 -1
- metadata +1 -1
data/lib/bitbot/plugin/tip.rb
CHANGED
@@ -30,7 +30,7 @@ module Bitbot::Tip
|
|
30
30
|
|
31
31
|
# Success! Let the room know...
|
32
32
|
m.reply "[✔] Verified: ".irc(:grey).irc(:bold) +
|
33
|
-
m.user.
|
33
|
+
m.user.nick.irc(:bold) +
|
34
34
|
" ➜ ".irc(:grey) +
|
35
35
|
satoshi_with_usd(satoshi) +
|
36
36
|
" ➜ ".irc(:grey) +
|
@@ -47,7 +47,7 @@ module Bitbot::Tip
|
|
47
47
|
"."
|
48
48
|
|
49
49
|
# ... and let the recipient know privately.
|
50
|
-
recipient_ircuser.msg m.user.
|
50
|
+
recipient_ircuser.msg m.user.nick.irc(:bold) +
|
51
51
|
" just sent you " +
|
52
52
|
satoshi_with_usd(satoshi) +
|
53
53
|
" in " +
|
data/tipjar.gemspec
CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{tipjar}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.193"
|
6
6
|
s.platform = Gem::Platform::RUBY
|
7
7
|
s.authors = ["WeirdThall", "Zach Wily"]
|
8
8
|
s.email = ["weirdthall@gmail.com", "zach@zwily.com"]
|