Project

readypulse

0.0
No commit activity in last 3 years
No release in over 3 years
Readypulse API wrapper.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

version Dependency Status Build Status Test Coverage Code Climate

Readypulse

Ruby wraper for Readypulse API

Installation

Add this line to your application's Gemfile:

gem 'readypulse'

And then execute:

$ bundle

Or install it yourself as:

$ gem install readypulse

Usage

album = Album.new(id: 1)   # => #<Album @id="1">
album.name                 # => "My Very First Curation"
album.description          # => "This is my first curation on the ReadyPulse production site."

images = album.images      # => #<ImageCollection>

image = album.images.first # => #<Image>
image.types                # => ["email", "tile", "square-tile", "mobile-tile", "large", "original"]

image['mobile-tile']       # => #<ImageType @type="mobile-tile">
image['mobile-tile'].url   # => 'https://cloudinary-a.akamaihd.net/readypulse/image/upload/c_fill,fl_progressive,h_250,q_75,w_300/v1418764365/ig_3542844_630741923525326235_3542844.jpg'

Contributing

  1. Fork it ( https://github.com/[my-github-username]/readypulse/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