constant-contact-ruby 0.2.3 → 0.2.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/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.2.4 == 2010/03/04
2
+
3
+ * always return an array of Contact objects from ContactList.members method
4
+
1
5
  == 0.2.3 == 2010/03/04
2
6
 
3
- * bugfix for when activities return single or multiple records
7
+ * bugfix for when activities return single or multiple records
@@ -2,4 +2,4 @@
2
2
  :major: 0
3
3
  :minor: 2
4
4
  :build:
5
- :patch: 3
5
+ :patch: 4
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{constant-contact-ruby}
8
- s.version = "0.2.3"
8
+ s.version = "0.2.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Craig P Jolicoeur"]
@@ -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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: constant-contact-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig P Jolicoeur