line-bot-api 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bacc569f18f3dbb680eb5a586cc5c629da742ea5
4
- data.tar.gz: c3a94886a25da92b29c5765f1e8d5042e582db51
3
+ metadata.gz: 9680c4a827339588d6e293286f9ba26cc3ce8a97
4
+ data.tar.gz: 2be978bf5c898cbdffd3910099cdf254f5645055
5
5
  SHA512:
6
- metadata.gz: 2a2fd710d001b8db5708258ef1744247bcb791e87111f4f11c083ef156bb6ed935a299fd72b151347031ad55f38a4a48a6165fea1113b88dabbbeb53c3e63f72
7
- data.tar.gz: 3e746526009ce41a09c754e56a7590f91e66d445000319c79be1abc3073e27926fe33447cbfa0a6f41409ff43f2aa57edb1a0f80b59a50116d59ccefc221ff74
6
+ metadata.gz: 450c23897326e6233d6926e8e2c1761d204d3bdbf1764877201684f0e71b030cfe58094412a624c6a233988565a8de5fa5ab017855706d873c5e728bc2ca244b
7
+ data.tar.gz: 62da2fee4d2cab9d1b518ef80b28432b3cf3596e4429d5211acdbd6a4ce99edf67b5dab4693dbdff1030417e9f02b5af823f9f316ea87beec264276345463c49
@@ -15,7 +15,7 @@
15
15
  module Line
16
16
  module Bot
17
17
  module API
18
- VERSION = "1.6.0"
18
+ VERSION = "1.7.0"
19
19
  end
20
20
  end
21
21
  end
@@ -21,3 +21,5 @@ require 'line/bot/event/leave'
21
21
  require 'line/bot/event/message'
22
22
  require 'line/bot/event/postback'
23
23
  require 'line/bot/event/unfollow'
24
+ require 'line/bot/event/member_joined'
25
+ require 'line/bot/event/member_left'
@@ -0,0 +1,22 @@
1
+ # Copyright 2016 LINE
2
+ #
3
+ # LINE Corporation licenses this file to you under the Apache License,
4
+ # version 2.0 (the "License"); you may not use this file except in compliance
5
+ # with the License. You may obtain a copy of the License at:
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
+ # License for the specific language governing permissions and limitations
13
+ # under the License.
14
+
15
+ module Line
16
+ module Bot
17
+ module Event
18
+ class MemberJoined < Base
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,22 @@
1
+ # Copyright 2016 LINE
2
+ #
3
+ # LINE Corporation licenses this file to you under the Apache License,
4
+ # version 2.0 (the "License"); you may not use this file except in compliance
5
+ # with the License. You may obtain a copy of the License at:
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
+ # License for the specific language governing permissions and limitations
13
+ # under the License.
14
+
15
+ module Line
16
+ module Bot
17
+ module Event
18
+ class MemberLeft < Base
19
+ end
20
+ end
21
+ end
22
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: line-bot-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - LINE Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-04 00:00:00.000000000 Z
11
+ date: 2019-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -91,6 +91,8 @@ files:
91
91
  - lib/line/bot/event/follow.rb
92
92
  - lib/line/bot/event/join.rb
93
93
  - lib/line/bot/event/leave.rb
94
+ - lib/line/bot/event/member_joined.rb
95
+ - lib/line/bot/event/member_left.rb
94
96
  - lib/line/bot/event/message.rb
95
97
  - lib/line/bot/event/postback.rb
96
98
  - lib/line/bot/event/unfollow.rb