dingbot 0.2.2 → 0.2.3
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.
- checksums.yaml +4 -4
- data/README.md +10 -4
- data/lib/dingbot/message/markdown.rb +16 -3
- data/lib/dingbot/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f3900000e1d35173b8444d6895f2abc081d3d4a
|
4
|
+
data.tar.gz: bb25170d9dacb52ec4680df49c411707a4ae06f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9584951d70aebb491bcf6eb4184b1779b33ae79f6b525b70b6695c3816b1cce47c925980648224d939235abeab2f32d4987745e52f93156b75041d3b618b43c9
|
7
|
+
data.tar.gz: f377b6f1a43757fe38ae38c54b01c19a4981c3e61c6309732b5ee3165f25d667785c4fd96a0b7b8d8f768c5a89a4239e3ccd811ea0b54bca1a567f760fe9c088
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# DingTalk Bot
|
2
|
-
[](https://travis-ci.org/thierryxing/dingtalk-bot)
|
3
|
+
[](https://rubygems.org/gems/dingbot)
|
3
4
|
[](https://raw.githubusercontent.com/thierryxing/dingtalk-bot/master/LICENSE.txt)
|
4
5
|
|
5
6
|
DingTalk Bot是阿里钉钉自定义机器人的Ruby库
|
@@ -24,10 +25,15 @@ gem 'dingbot'
|
|
24
25
|
初始化客户端:
|
25
26
|
|
26
27
|
```ruby
|
28
|
+
# 全局配置方式
|
27
29
|
DingBot.configure do |config|
|
28
30
|
config.endpoint = 'https://oapi.dingtalk.com/robot/send' # API endpoint URL, default: ENV['DINGTALK_API_ENDPOINT'] or https://oapi.dingtalk.com/robot/send
|
29
31
|
config.access_token = '3ddef428f1478056e858450e07272834c79bd538e8055a04e989573c469xxxx' # access token, default: ENV['DINGTALK_ACCESS_TOKEN']
|
30
32
|
end
|
33
|
+
|
34
|
+
# 局部配置方式
|
35
|
+
DingBot.endpoint='https://oapi.dingtalk.com/robot/send'
|
36
|
+
DingBot.access_token = '3ddef428f1478056e858450e07272834c79bd538e8055a04e989573c469xxxx'
|
31
37
|
```
|
32
38
|
|
33
39
|
发送消息
|
@@ -41,7 +47,7 @@ end
|
|
41
47
|
def send_text
|
42
48
|
message = DingBot::Message::Text.new(
|
43
49
|
'我就是我, 是不一样的烟火',
|
44
|
-
['
|
50
|
+
['1371xxxx117'],
|
45
51
|
false
|
46
52
|
)
|
47
53
|
DingBot.send_msg(message)
|
@@ -52,7 +58,7 @@ def send_link
|
|
52
58
|
message = DingBot::Message::Link.new(
|
53
59
|
'我就是我, 是不一样的烟火',
|
54
60
|
'这个即将发布的新版本,创始人陈航(花名“无招”)称它为“红树林”。',
|
55
|
-
'https://
|
61
|
+
'https://www.dingtalk.com/',
|
56
62
|
'https://avatars1.githubusercontent.com/u/64818'
|
57
63
|
)
|
58
64
|
DingBot.send_msg(message)
|
@@ -109,4 +115,4 @@ end
|
|
109
115
|
更为详细的用法请见此链接:[https://github.com/thierryxing/dingtalk-bot/blob/master/test/dingbot_test.rb](https://github.com/thierryxing/dingtalk-bot/blob/master/test/dingbot_test.rb)
|
110
116
|
|
111
117
|
## License
|
112
|
-
Released under the MIT license. See LICENSE.txt for details.
|
118
|
+
Released under the MIT license. See LICENSE.txt for details.
|
@@ -10,14 +10,22 @@ module DingBot
|
|
10
10
|
# "> 9度,西北风1级,空气良89,相对温度73%\n\n" +
|
11
11
|
# "> \n" +
|
12
12
|
# "> ###### 10点20分发布 [天气](http://www.thinkpage.cn/) \n"
|
13
|
+
# },
|
14
|
+
# "at": {
|
15
|
+
# "atMobiles": [
|
16
|
+
# "1825718XXXX"
|
17
|
+
# ],
|
18
|
+
# "isAtAll": false
|
13
19
|
# }
|
14
20
|
# }
|
15
21
|
class Markdown < Base
|
16
|
-
attr_accessor :title, :text
|
22
|
+
attr_accessor :title, :text, :at_mobiles, :is_at_all
|
17
23
|
|
18
|
-
def initialize(title='', text='')
|
24
|
+
def initialize(title='', text='', at_mobiles=[], is_at_all=false)
|
19
25
|
@title = title
|
20
26
|
@text = text
|
27
|
+
@at_mobiles = at_mobiles
|
28
|
+
@is_at_all = is_at_all
|
21
29
|
end
|
22
30
|
|
23
31
|
def msg_type
|
@@ -25,10 +33,15 @@ module DingBot
|
|
25
33
|
end
|
26
34
|
|
27
35
|
def body_params
|
28
|
-
super.merge(
|
36
|
+
super.merge({
|
29
37
|
markdown: {
|
30
38
|
text: @text,
|
31
39
|
title: @title,
|
40
|
+
},
|
41
|
+
at: {
|
42
|
+
atMobiles: @at_mobiles,
|
43
|
+
isAtAll: @is_at_all
|
44
|
+
}
|
32
45
|
}
|
33
46
|
)
|
34
47
|
end
|
data/lib/dingbot/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dingbot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thierry Xing
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
134
|
version: '0'
|
135
135
|
requirements: []
|
136
136
|
rubyforge_project:
|
137
|
-
rubygems_version: 2.
|
137
|
+
rubygems_version: 2.6.14
|
138
138
|
signing_key:
|
139
139
|
specification_version: 4
|
140
140
|
summary: 钉钉自定义机器人Ruby库
|