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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/plezi/controller/controller_class.rb +2 -2
- data/lib/plezi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5cd346eba51186ab74e71d8be5283c2b447dac27df891ac83dd9df7cb0af454
|
4
|
+
data.tar.gz: 38b04611cc104b4c9d781cd0805ff602195005a37e41c71ab43703ee695e60bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9eb6c2b0625161f96423a8d8e1c99ed53aea8735d75dddde9c337a670ef27d80af9648d836e5c9de547e5f8f550cae81ad9640cf7fa54d47b6edf22ec6d0bc99
|
7
|
+
data.tar.gz: bee0e4e16fdad29a040af5c0cf28ec9d218ba4c9a6b1408446c12af072695338f5a6185dc2eff2ff73b176555ef914a1b2ae802117c614f0a750ce02637105d4
|
data/CHANGELOG.md
CHANGED
@@ -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).
|
data/lib/plezi/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2018-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: iodine
|