plezi 0.16.1 → 0.16.2

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
  SHA256:
3
- metadata.gz: 45f6afcb048d7e718df8f9eced81ed797c6591656da5bdc961cb83becb1a1fd7
4
- data.tar.gz: d99fba485b851dbf8c914e50c1e34d389e760981aaaf0d26249e098affb03e3e
3
+ metadata.gz: d5cd346eba51186ab74e71d8be5283c2b447dac27df891ac83dd9df7cb0af454
4
+ data.tar.gz: 38b04611cc104b4c9d781cd0805ff602195005a37e41c71ab43703ee695e60bd
5
5
  SHA512:
6
- metadata.gz: 5f3daa504ea44e1fdf5f70ea0524fa39f79167fca6a1916232b3b21d7ce015e004e172e56987843150674c239151a2aef483325c675b0c432e9e986ebb675f7d
7
- data.tar.gz: 2a0018cd9f6bc7717db68aafd7891f728023c8356db82627cafb8fbb04ce32481fe1914ca746cc91e9fa1cb96fdd73b6f72f6e9bfc7436e4adcb93303a83d4d4
6
+ metadata.gz: 9eb6c2b0625161f96423a8d8e1c99ed53aea8735d75dddde9c337a670ef27d80af9648d836e5c9de547e5f8f550cae81ad9640cf7fa54d47b6edf22ec6d0bc99
7
+ data.tar.gz: bee0e4e16fdad29a040af5c0cf28ec9d218ba4c9a6b1408446c12af072695338f5a6185dc2eff2ff73b176555ef914a1b2ae802117c614f0a750ce02637105d4
@@ -2,6 +2,12 @@
2
2
 
3
3
  ***
4
4
 
5
+ Change log v.0.16.2
6
+
7
+ **Fix**: Fixed an issue with Controller class method `publish` where only the named-arguments style API was respected, now non-named arguments are supported as wee - this didn't effect the Controller instance method `publish`.
8
+
9
+ ***
10
+
5
11
  Change log v.0.16.1
6
12
 
7
13
  **Fix**: Fix the application boilerplate code, fixing a typo in the resulting `config.ru` which resulted in boilerplate code failing to execute. Credit to @namiwang (Nami WANG) for PR #28.
@@ -8,8 +8,8 @@ module Plezi
8
8
  end
9
9
 
10
10
  # Publishes a message to a channel.
11
- def publish(args)
12
- Iodine.publish args
11
+ def publish(*args)
12
+ Iodine.publish *args
13
13
  end
14
14
 
15
15
  # Returns a relative URL for the controller, placing the requested parameters in the URL (inline, where possible and as query data when not possible).
@@ -1,3 +1,3 @@
1
1
  module Plezi
2
- VERSION = '0.16.1'.freeze
2
+ VERSION = '0.16.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plezi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.1
4
+ version: 0.16.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boaz Segev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-08-02 00:00:00.000000000 Z
11
+ date: 2018-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: iodine