playerconnect-wsdsl 0.4.3 → 0.4.4
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.
- data/lib/response.rb +1 -1
- data/playerconnect-wsdsl.gemspec +1 -1
- metadata +1 -1
data/lib/response.rb
CHANGED
|
@@ -83,7 +83,7 @@ class WSDSL
|
|
|
83
83
|
# @api public
|
|
84
84
|
def initialize(opts={})
|
|
85
85
|
opts[:type] ||= nil
|
|
86
|
-
opts[:required]
|
|
86
|
+
opts[:required] = nil if !opts.has_key?(:required)
|
|
87
87
|
|
|
88
88
|
# sets a documentation placeholder since the response doc is defined at the same time
|
|
89
89
|
# the response is defined.
|
data/playerconnect-wsdsl.gemspec
CHANGED