ruby-mailchimp 0.4.1 → 0.4.2

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.
Files changed (2) hide show
  1. data/lib/mail_chimp.rb +1 -1
  2. metadata +1 -1
data/lib/mail_chimp.rb CHANGED
@@ -100,7 +100,7 @@ class MailChimp
100
100
  client.call("listUpdateMember", uid, list_id, email, merge_vars, email_type, replace_interests)
101
101
  end
102
102
 
103
- def listMembers(uid, list_id, status, start=1, limit=100)
103
+ def listMembers(uid, list_id, status, start=0, limit=100)
104
104
  raise StandardError("Not Loggged in or invalid UID.") if (uid.nil?)
105
105
  client = XMLRPC::Client.new2(API_URL) if client.nil?
106
106
  client.call("listMembers", uid, list_id, status, start, limit)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-mailchimp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - C. G. Brown