Sha256: 68a6bee0ba0dc296a1d9feab0a72c7e8f4b0d7b08ae660825d48d45d0982af6b

Contents?: true

Size: 947 Bytes

Versions: 2

Compression:

Stored size: 947 Bytes

Contents

# MonkeyParty

[![Build Status](https://secure.travis-ci.org/dpickett/monkey_party.png)](http://travis-ci.org/dpickett/monkey_party)

An extremely young API for interacting with the MailChimp API

Currently only supports 

* adding api keys
* finding lists by name
* batch subscribing 
* unsubscribing

Uses the excellent HTTParty and HappyMapper tools and is well tested

## Installation

Add this line to your application's Gemfile:

    gem 'monkey_party'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install monkey_party

## Usage

```ruby
  list = MonkeyParty::List.find_by_name("list_name")
  list.create_subscribers([MonkeyParty::Subscriber.new("user@example.com")])
```


## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
monkey_party-0.3.1 README.md
monkey_party-0.3.0 README.md