CFPropertyList 2.0.15 → 2.0.16
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/rbCFPropertyList.rb +1 -1
- metadata +3 -3
data/lib/rbCFPropertyList.rb
CHANGED
|
@@ -131,7 +131,7 @@ module CFPropertyList
|
|
|
131
131
|
|
|
132
132
|
return CFDictionary.new(hsh)
|
|
133
133
|
elsif options[:converter_method] and object.respond_to?(options[:converter_method]) then
|
|
134
|
-
return CFPropertyList.guess(object.send(options[:converter_method]))
|
|
134
|
+
return CFPropertyList.guess(object.send(options[:converter_method]),options)
|
|
135
135
|
elsif options[:convert_unknown_to_string] then
|
|
136
136
|
return CFString.new(object.to_s)
|
|
137
137
|
else
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 2
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 2.0.
|
|
8
|
+
- 16
|
|
9
|
+
version: 2.0.16
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Christian Kruse
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-
|
|
17
|
+
date: 2011-03-21 00:00:00 +01:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|