Project

infogram

0.01
No release in over 3 years
Low commit activity in last 3 years
Ruby library for Infogr.am
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

~> 0.13
~> 1.8
 Project Readme

Infogram::Ruby

Ruby library for Infogr.am

Installation

$ gem install infogram

Usage

require 'infogram'

client = Infogram::Client.new('API_KEY', 'API_SECRET')
client.themes.list

Example response

[
  {
    "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"
  }
]

API Methods

Themes

client.themes.list

Infographics

client.infographics.list
client.infographics.get(infographic_id)
client.infographics.create(params)
client.infographics.update(infographic_id, params)
client.infographics.destroy(infographic_id)

Users

client.users.get_infographics(user_id)

Contributing

  1. Fork it ( https://github.com/[my-github-username]/infogram-ruby/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request