fastlane-plugin-line_message 0.0.1 → 0.1.0
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 +15 -0
- data/lib/fastlane/plugin/line_message/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0817bf70f1e7ea6498ab7716c58556db5fd8672d79890aeca5b6406c17545f9b'
|
|
4
|
+
data.tar.gz: be49af7c4dfc349805f0fc1db9098474af8d3adac2f1a06c79c0fcbd3b5d18fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4cacaee942e75681cd43203c01cc3fb6b99f39f6eddb3cc7af34ab88d55fd7c3259367c4429c4cdcafd3a7da7b04b97f70d9263f284c035d1134e55303ec3d4f
|
|
7
|
+
data.tar.gz: 4f37480217f6b97f5436ae653d7ec4ac7db56576cc8678666434d8884ef50cf977e74664be90dfc0fac919bda519a7582fec1929b0c12ef5585a1dfe6b057757
|
data/README.md
CHANGED
|
@@ -18,6 +18,21 @@ Use to send message to Line chat
|
|
|
18
18
|
|
|
19
19
|
## Example
|
|
20
20
|
|
|
21
|
+
```ruby
|
|
22
|
+
line_message(
|
|
23
|
+
api_token: ENV["LINE_MESSAGE_API_TOKEN"],
|
|
24
|
+
to: ENV["LINE_MESSAGE_TARGET"],
|
|
25
|
+
messages: [{
|
|
26
|
+
"type": "text",
|
|
27
|
+
"text": "test ๆ"
|
|
28
|
+
}, {
|
|
29
|
+
"type": "sticker",
|
|
30
|
+
"packageId": "1",
|
|
31
|
+
"stickerId": "1"
|
|
32
|
+
}]
|
|
33
|
+
)
|
|
34
|
+
```
|
|
35
|
+
|
|
21
36
|
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
|
22
37
|
|
|
23
38
|
- Post message to https://api.line.me/v2/bot/message/push
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-line_message
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wasith Theerapattrathamrong
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|