slack-ruby-client 0.7.8 → 0.7.9

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: c5793c41e4f30d4ce46c8b5340efb2eb7cff89ca
4
- data.tar.gz: 9eef47649e6fb3e914ff2b9f02c3854a0f3dfcd0
3
+ metadata.gz: ad6bf56a73816447c713f921c5bee06d94bf7d95
4
+ data.tar.gz: aff21372999f08aafa6b544d9ae098b4ebebeb2e
5
5
  SHA512:
6
- metadata.gz: e40a3979c8bca20a1f2f7415e571c9d40494940094bdb429d7845fa45ca1c5a6a9ba0cc27eb55b54247a847302e161ff0e012140dd8d95cac0b4631af5beeb91
7
- data.tar.gz: d69d8327ee9c4eae89a6a85eb653a45c7bb27d038431993e55220661579fdeaf6bafeea64526ce2cde2d255bd8eba903ccc998bcf6dbc407d92f6a77cd9c3bb7
6
+ metadata.gz: c216963c1c8fcf6868d7270cde48e36d8cd197d2e9e416ab7817f34929561d5c1c615f9498f3732fb4aefab4dcf9c6d02fd3ba82a6dfe34cceeb315c6cb700a4
7
+ data.tar.gz: 8eb35d81456afb96689bc3ef28912a0cd1438c0782a275179959819fcbebc2ecdd6ccce6cb537e3ce90009802070127fb2cdc5a8e6d11524e7b5649d5a8919ac
@@ -1,3 +1,7 @@
1
+ ### 0.7.9 (2/9/2017)
2
+
3
+ * [#132](https://github.com/slack-ruby/slack-ruby-client/issues/132): Fix: you are setting a key that conflicts with a built-in method Slack::Messages::Message#presence - [@dblock](https://github.com/dblock).
4
+
1
5
  ### 0.7.8 (1/23/2017)
2
6
 
3
7
  * [#127](https://github.com/slack-ruby/slack-ruby-client/pull/127): Added `thread_ts` and `reply_broadcast` options to `chat_postMessage` in Web API - [@dblock](https://github.com/dblock).
data/README.md CHANGED
@@ -18,7 +18,7 @@ A Ruby client for the Slack [Web](https://api.slack.com/web) and [RealTime Messa
18
18
 
19
19
  ## Stable Release
20
20
 
21
- You're reading the documentation for the **stable** release of slack-ruby-client, 0.7.8. See [UPGRADING](UPGRADING.md) when upgrading from an older version.
21
+ You're reading the documentation for the **stable** release of slack-ruby-client, 0.7.9. See [UPGRADING](UPGRADING.md) when upgrading from an older version.
22
22
 
23
23
  ## Installation
24
24
 
@@ -10,6 +10,12 @@ module Slack
10
10
  "#{key}=#{self[key]}"
11
11
  end.join(', ')
12
12
  end
13
+
14
+ private
15
+
16
+ # see https://github.com/intridea/hashie/issues/394
17
+ def log_built_in_message(*)
18
+ end
13
19
  end
14
20
  end
15
21
  end
@@ -5,6 +5,10 @@ module Slack
5
5
  def presence
6
6
  super['presence']
7
7
  end
8
+
9
+ # see https://github.com/intridea/hashie/issues/394
10
+ def log_built_in_message(*)
11
+ end
8
12
  end
9
13
  end
10
14
  end
@@ -1,3 +1,3 @@
1
1
  module Slack
2
- VERSION = '0.7.8'.freeze
2
+ VERSION = '0.7.9'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.8
4
+ version: 0.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Doubrovkine
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-23 00:00:00.000000000 Z
11
+ date: 2017-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -449,7 +449,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
449
449
  version: 1.3.6
450
450
  requirements: []
451
451
  rubyforge_project:
452
- rubygems_version: 2.6.8
452
+ rubygems_version: 2.6.7
453
453
  signing_key:
454
454
  specification_version: 4
455
455
  summary: Slack Web and RealTime API client.