Ruby library for Infogr.am
$ gem install infogram
require 'infogram'
client = Infogram::Client.new('API_KEY', 'API_SECRET')
client.themes.list
[
{
"id": 61,
"title": "twitter",
"thumb": "https://infogr.am/i/templates/61/twitter-thumbnail-small.png"
},
{
"id": 44,
"title": "Megaphone",
"thumb": "https://infogr.am/i/templates/S/PRO-megaphone.png"
},
{
"id": 34,
"title": "Asketic-new",
"thumb": "https://infogr.am/i/templates/S/asketic-black.png"
}
]
client.themes.list
client.infographics.list
client.infographics.get(infographic_id)
client.infographics.create(params)
client.infographics.update(infographic_id, params)
client.infographics.destroy(infographic_id)
client.users.get_infographics(user_id)
- Fork it ( https://github.com/[my-github-username]/infogram-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request