constant-contact-ruby 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -1
- data/VERSION.yml +1 -1
- data/constant-contact-ruby.gemspec +1 -1
- data/lib/constant_contact/contact_list.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/VERSION.yml
CHANGED
@@ -96,7 +96,7 @@ module ConstantContact
|
|
96
96
|
if( members['feed']['entry'].is_a?(Array) )
|
97
97
|
members['feed']['entry'].collect { |entry| Contact.new( entry, '', true ) }
|
98
98
|
else
|
99
|
-
Contact.new( members['feed']['entry'], '', true )
|
99
|
+
[Contact.new( members['feed']['entry'], '', true )]
|
100
100
|
end
|
101
101
|
end
|
102
102
|
|