rubydium 0.3.4 → 0.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rubydium/mixins/message_sending.rb +2 -2
- data/lib/rubydium/mixins/other_actions.rb +1 -1
- data/lib/rubydium/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25b7c60f1b5de37d7df492f2bafc20f1cba006a98884345c5d961b45282d6333
|
4
|
+
data.tar.gz: dddc9b3caa3211391748b4847490f6ab9540b35f710151bd5cbddd92e9ed7bfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4490a2d8a9392814f15295efb7def77de860f3e1b96a42b181c4682aeea93fbde061bd82067ce1de570ee24ff574b4d8fb4b9622aea9d7fd2c22c95789b1ee17
|
7
|
+
data.tar.gz: 1b9f21ec1aff8ec3e751c92573417fb050c242718ae907699dc1c7f57461c98c0758bb918bccadbb84a73abf080d83ade11e2dccb02f687326165e2b902e3fa5
|
@@ -16,7 +16,7 @@ module Rubydium
|
|
16
16
|
@api.send_message(
|
17
17
|
chat_id: @chat.id,
|
18
18
|
message_thread_id: @topic_id,
|
19
|
-
text:
|
19
|
+
text: text,
|
20
20
|
**kwargs
|
21
21
|
)
|
22
22
|
rescue Telegram::Bot::Exceptions::ResponseError => e
|
@@ -89,8 +89,8 @@ module Rubydium
|
|
89
89
|
|
90
90
|
def reply(text, **args)
|
91
91
|
send_message(
|
92
|
+
text,
|
92
93
|
reply_to_message_id: @message_id,
|
93
|
-
text: text,
|
94
94
|
**args
|
95
95
|
)
|
96
96
|
end
|
data/lib/rubydium/version.rb
CHANGED