slappy 0.6.2 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f74ea7d44f589a3d1adeed3e51af0b7e65ac705c
4
- data.tar.gz: ca28d4ccdddff8e77cfceed4d0485ff9c5ab6e8e
3
+ metadata.gz: 52862ac6f41febd577492239712de1fbf358d926
4
+ data.tar.gz: 4f3bae00608ec941ce7c5780abae423f897bc37f
5
5
  SHA512:
6
- metadata.gz: 374c6a4b28c619ea6a396de9276ff55c1d65870f95879c04b573caf64ad9fbbdfd6b5a2fd7ffe8b29d0bf1ab165931087a5dda133b3f159720b59ed7ea8679b4
7
- data.tar.gz: 83858d2d18ae269107b458b81fc7731d4cef9b03976bad49a430864488b3943abd632cceb4b233353ed62a1820d1bb204d9783703ad4177fde2d7b99e8d750a4
6
+ metadata.gz: 7af5b0cca727a8bf46d61db5c6253fa5f67dc0ed45a6029a257ada469787550321fc75b0417fe141bc69f0451ad66d4d807f63af0c3b7c3f0740c0b72e242def
7
+ data.tar.gz: 71db75af7ef8793977ef84e6336ecde6628ef489abaa48e0b29647bb6815c8bbd85bc1c5938c70bd6af3fe714580b616e217db35e5bf61f346ea05add078954f
data/README.md CHANGED
@@ -254,6 +254,13 @@ Slappy.start #=> Start WebSocket connection
254
254
 
255
255
  ## Release Note
256
256
 
257
+ - v0.6.3
258
+ - Fix did not work monitor reaction_added RTM (contribute from noir-neo [#43](https://github.com/wakaba260/slappy/pull/43))
259
+ - Fix option name in configuration template (contribute from Tomohiro [#42](https://github.com/wakaba260/slappy/pull/42))
260
+
261
+ - v0.6.2
262
+ - Fix dsl config (contribute from Sho2010 [#41](https://github.com/wakaba260/slappy/pull/41))
263
+
257
264
  - v0.6.1
258
265
  - Fix ts validation
259
266
  - validation skil when ts be nil
@@ -26,7 +26,7 @@ module Slappy
26
26
  end
27
27
 
28
28
  def ts
29
- Time.at(@data['ts'].to_f)
29
+ Time.at((@data['ts'] || @data['event_ts']).to_f)
30
30
  end
31
31
 
32
32
  def reply(text, options = {})
@@ -1,3 +1,3 @@
1
1
  module Slappy
2
- VERSION = '0.6.2'
2
+ VERSION = '0.6.3'
3
3
  end
@@ -33,7 +33,7 @@ Slappy.configure do |config|
33
33
  # Select bot be stop when catch StandardError.
34
34
  # If false, puts stack trace but be not stop when bot catch StandardError.
35
35
  #
36
- # config.stop_with_exception = true
36
+ # config.stop_with_error = true
37
37
 
38
38
  ## Default parameters
39
39
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slappy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - wakaba260
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-14 00:00:00.000000000 Z
11
+ date: 2016-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: slack-api
@@ -292,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
292
292
  version: '0'
293
293
  requirements: []
294
294
  rubyforge_project:
295
- rubygems_version: 2.5.2
295
+ rubygems_version: 2.5.1
296
296
  signing_key:
297
297
  specification_version: 4
298
298
  summary: Simple Slack Bot Framework