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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 187cec3cc9668cd88704f8723e542550672b5be13c609d4eb74b61029145da38
4
- data.tar.gz: 120c0e1791c3b374712cbca3f55174a0e8ec58e4c3829925204e972c1b93bdd9
3
+ metadata.gz: '0817bf70f1e7ea6498ab7716c58556db5fd8672d79890aeca5b6406c17545f9b'
4
+ data.tar.gz: be49af7c4dfc349805f0fc1db9098474af8d3adac2f1a06c79c0fcbd3b5d18fa
5
5
  SHA512:
6
- metadata.gz: a70166e2ae79fb717068828fad11a9b55090b58955489aec2ae6818badd41923c1c03d3f629b5e0d0ef3dc46d646373cad69b9d677551c0b9f987f56f2f39053
7
- data.tar.gz: 74ef05426802bef758009ca74faa55c9f6d8387b09c1a5c3caa47ad334fe057826207c62c9be636b0d70e5e9297006bcdfa3053fbee871cb74c3cf5a2a1a06ed
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module LineMessage
3
- VERSION = "0.0.1"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
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.1
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 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry