<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Brian Getting&quot;, &quot;Michael Str\303\274der&quot;]
-  s.date = %q{2009-10-31}
+  s.date = %q{2009-11-03}
   s.description = %q{Hominid is a Ruby gem that provides a wrapper for interacting with the Mailchimp email marketing service API.}
   s.email = %q{brian@terra-firma-design.com}
   s.extra_rdoc_files = [</diff>
      <filename>hominid.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -5,22 +5,22 @@ module Hominid
     # Helper methods
     # --------------------------------
     
-    def self.account_details
+    def self.account_details(options = {})
       # Get details for this account.
-      new.call(&quot;getAccountDetails&quot;)
+      new(options).call(&quot;getAccountDetails&quot;)
     end
     
-    def self.convert_css_to_inline(html, strip_css = false)
+    def self.convert_css_to_inline(html, strip_css = false, options = {})
       # Convert CSS styles to inline styles and (optionally) remove original styles
       new.call(&quot;inlineCss&quot;, html, strip_css)
     end
     
-    def self.create_folder(name)
+    def self.create_folder(name, options = {})
       # Create a new folder to file campaigns in
-      new.call(&quot;createFolder&quot;, name)
+      new(options).call(&quot;createFolder&quot;, name)
     end
     
-    def self.generate_text(type, content)
+    def self.generate_text(type, content, options = {})
       # Have HTML content auto-converted to a text-only format.
       # The options for text type are:
       #   'html'      =&gt; Expects a string of HTML(default).
@@ -28,17 +28,17 @@ module Hominid
       #   'url'       =&gt; Expects a valid and public URL.
       #   'cid'       =&gt; Expects a campaign ID.
       #   'tid'       =&gt; Expects a template ID.
-      new.call(&quot;generateText&quot;, type, content)
+      new(options).call(&quot;generateText&quot;, type, content)
     end
     
-    def self.html_to_text(content)
+    def self.html_to_text(content, options = {})
       # Convert HTML content to text
-      new.call(&quot;generateText&quot;, 'html', content)
+      new(options).call(&quot;generateText&quot;, 'html', content)
     end
     
-    def self.ping
+    def self.ping(options = {})
       # Ping the Mailchimp API
-      new.call(&quot;ping&quot;)
+      new(options).call(&quot;ping&quot;)
     end
     
   end</diff>
      <filename>lib/hominid/helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>188e11535962c088051f229282e3cf73409fc0a1</id>
    </parent>
  </parents>
  <author>
    <name>bgetting</name>
    <email>brian@terra-firma-design.com</email>
  </author>
  <url>http://github.com/bgetting/hominid/commit/39d2cbefd1666ff3b637e52987e5ba13e6a0d536</url>
  <id>39d2cbefd1666ff3b637e52987e5ba13e6a0d536</id>
  <committed-date>2009-11-10T09:35:24-08:00</committed-date>
  <authored-date>2009-11-10T09:35:24-08:00</authored-date>
  <message>Merged arzumy's changes</message>
  <tree>1523035f5b026a4ef470a52c49a5a6fce2a11bc3</tree>
  <committer>
    <name>bgetting</name>
    <email>brian@terra-firma-design.com</email>
  </committer>
</commit>
