Sha256: 87e187b627d778dfa16eb04ffbccfa80d7d9ea0f6f55ac714a49b09227b0e731

Contents?: true

Size: 1.24 KB

Versions: 18

Compression:

Stored size: 1.24 KB

Contents

# eucalyptus

An easy interface and abstraction to the Facebook Ads API.

![alt text](http://public.media.smithsonianmag.com/legacy_blog/eucalyptus-gold.jpg "Eucalyptus")

## Installation

`gem install eucalyptus`

or stick this in your gemfile:

`gem 'eucalyptus'`

You then need to grab yourself an access token from facebook and initialize Eucalyptus with it:

```
Eucalyptus.configure do |config|
  config.access_token = YOUR_ACCESS_TOKEN
end
```

And you're all set to go!

## Usage

```
account = Eucalyptus::Account.all.last
campaign = account.campaigns.first

campaign.name

account_ads = account.ads
campaign_ads = campaign.ads

insights = campaign.insights
insights.cpa

ads = Add.all

ads == account_ads
```

## Contributing to eucalyptus
 
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
- Fork the project.
- Start a feature/bugfix branch.
- Commit and push until you are happy with your contribution.
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.

## Copyright

Copyright (c) 2015 Oguz Huner. See LICENSE.txt for
further details.

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
eucalyptus-0.3.3 README.md
eucalyptus-0.3.2 README.md
eucalyptus-0.3.1 README.md
eucalyptus-0.3.0 README.md
eucalyptus-0.2.13 README.md
eucalyptus-0.2.12 README.md
eucalyptus-0.2.11 README.md
eucalyptus-0.2.10 README.md
eucalyptus-0.2.9 README.md
eucalyptus-0.2.8 README.md
eucalyptus-0.2.7 README.md
eucalyptus-0.2.6 README.md
eucalyptus-0.2.5 README.md
eucalyptus-0.2.4 README.md
eucalyptus-0.2.3 README.md
eucalyptus-0.2.2 README.md
eucalyptus-0.2.1 README.md
eucalyptus-0.2.0 README.md