Sha256: 430b20a210f350fb9721d95fbec52a713a6de266cb876aaf0725dac555d29528

Contents?: true

Size: 520 Bytes

Versions: 3

Compression:

Stored size: 520 Bytes

Contents

module Hominid
  class STS < API
    
    # MailChimp STS API Documentation: http://apidocs.mailchimp.com/sts/1.0/
    MAILCHIMP_STS_VERSION = "1.0"
    
    # Initialize with an API key and config options
    def initialize(api_key, config = {})
      defaults = {
        :api_version        => MAILCHIMP_STS_VERSION,
        :domain             => 'sts.mailchimp.com',
        :secure             => false,
        :timeout            => nil
      }
      super(api_key, defaults.merge(config))
    end
    
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
hominid-wout-3.0.6 lib/hominid/sts.rb
hominid-3.0.5 lib/hominid/sts.rb
hominid-3.0.4 lib/hominid/sts.rb