easy_upnp 1.2.0 → 1.2.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 020e9f4c2353eeff4aa98f9027fdb2a2dfbd383f960cfa09786e65a34935a9d1
|
4
|
+
data.tar.gz: 51f151092a004bcd54e5774cea2633aa126b592165a2ee25599511697072c629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d482a6a9acc22cbc7750ec890b733156234ba7d8af6afde8aafd60182c62d22ce0ae2b5889649f16a607970ebccb30318cc779c899a810bc271cf5f506d08581
|
7
|
+
data.tar.gz: 26cb2b3c2d07ed6f30c5554490824e486b47a20b7a1d915d1a9594a07b3d09157b1c01aea1f9d84c56843e6b187fdca9d622368d0194e1228dbf44932feaca32
|
@@ -58,6 +58,7 @@ module EasyUpnp
|
|
58
58
|
class TypeValidator
|
59
59
|
# Valid UPnP types for each ruby class
|
60
60
|
RUBY_TYPE_TO_UPNP_TYPE = {
|
61
|
+
Array: %w{list},
|
61
62
|
Float: %w{r4 r8 number fixed.14.4 float},
|
62
63
|
Integer: %w{ui1 ui2 ui4 i1 i2 i4 int},
|
63
64
|
String: %w{char string bin.base64 bin.hex uri uuid},
|
@@ -42,13 +42,13 @@ module EasyUpnp
|
|
42
42
|
:'xmlns:u' => @urn
|
43
43
|
},
|
44
44
|
}.merge(@call_options)
|
45
|
-
|
45
|
+
|
46
46
|
if !@cookies.nil?
|
47
47
|
attrs = attrs.merge(
|
48
48
|
cookies: HTTPI::Cookie.new(@cookies)
|
49
49
|
)
|
50
50
|
end
|
51
|
-
|
51
|
+
|
52
52
|
advanced_typecasting = @advanced_typecasting
|
53
53
|
|
54
54
|
response = @client.call(action_name, attrs) do
|
data/lib/easy_upnp/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_upnp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christopher Mullins
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
116
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.7.
|
117
|
+
rubygems_version: 2.7.6
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: A super easy to use UPnP control point client
|