slack-bot-manager 0.1.0pre4 → 0.1.0pre5

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: 51b6ac26aac4de28dcde73e45c856f8bf8640bfd
4
- data.tar.gz: 816afe362b34c061445a494fd63503fa98764e2c
3
+ metadata.gz: 94c0fcf2ea9130702486e394c1ef6e0136e575ad
4
+ data.tar.gz: b6d72784eff5a297ad79d4fb64b9a89a37e2fd2c
5
5
  SHA512:
6
- metadata.gz: a279e460a54e42b601773511014eb476126dea7eeb375c6d23971064ac53d986d710c087f921361ed70d873cdc4994edf90ea09eac5328f614a68a2e3c9c9800
7
- data.tar.gz: da54ea74a0d0a2f3c7b39e7469bc002d78289bd0907690469377a6a2703a5fd7cf4941b6cb356732aa8e040cc70c4401fffa0bd128ff4496c1f4e3c6551c89b2
6
+ metadata.gz: addc0d7b47775b5bcba57fb55a48d1ed9da67c47979a55e1459462eee4b79c720ae0b03a99d624c73e16b7a299a6bbac8cdf7de6bc78b15aa3d111198d9f5aa5
7
+ data.tar.gz: 2afb977beff0109afc0c5d0056904da6c82916af9859b87a720f13c08edcf80c0994ce916560cae8bfde76567741b2d256a042868227bdb3086275cbd4855202
@@ -1,7 +1,7 @@
1
1
 
2
2
  ### Version 0.1.0 (20 Jan 2016)
3
3
 
4
- __**Pre-release at 0.1.0pre4**__
4
+ __**Pre-release at 0.1.0pre5**__
5
5
 
6
6
  This is the first version of Slack Bot Manager, and includes
7
7
 
@@ -103,9 +103,9 @@ module SlackBotManager
103
103
  end
104
104
 
105
105
  def storage_adapter=(val)
106
- # return if self.storage.present? && val == @storage_adapter
106
+ # return if !self.storage.nil? && val == @storage_adapter
107
107
  @storage_adapter = val
108
- self.storage = !@storage_adapter.empty? ? storage_adapter.new(self.storage_options) : nil
108
+ self.storage = !@storage_adapter.nil? ? storage_adapter.new(self.storage_options) : nil
109
109
  end
110
110
 
111
111
  def storage_options=(val)
@@ -1,3 +1,3 @@
1
1
  module SlackBotManager
2
- VERSION = '0.1.0pre4'.freeze
2
+ VERSION = '0.1.0pre5'.freeze
3
3
  end
@@ -10,7 +10,7 @@ http_interactions:
10
10
  Accept:
11
11
  - application/json; charset=utf-8
12
12
  User-Agent:
13
- - Slack Bot Manager/0.1.0pre4 <https://github.com/betaworks/slack-bot-manager>
13
+ - Slack Bot Manager/0.1.0pre5 <https://github.com/betaworks/slack-bot-manager>
14
14
  Content-Type:
15
15
  - application/x-www-form-urlencoded
16
16
  Accept-Encoding:
@@ -176,7 +176,7 @@ http_interactions:
176
176
  Accept:
177
177
  - application/json; charset=utf-8
178
178
  User-Agent:
179
- - Slack Bot Manager/0.1.0pre4 <https://github.com/betaworks/slack-bot-manager>
179
+ - Slack Bot Manager/0.1.0pre5 <https://github.com/betaworks/slack-bot-manager>
180
180
  Content-Type:
181
181
  - application/x-www-form-urlencoded
182
182
  Accept-Encoding:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slack-bot-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0pre4
4
+ version: 0.1.0pre5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Leuch