class AnimatedGifMe | |
include HTTParty | |
base_uri 'animatedgif.me' | |
def self.find(topic, options={}) | |
JSON.parse(get("/#{topic}.json", options).body) | |
end | |
end | |
# Convert spaces in the url to dashes before requesting a gif | |
AnimatedGifMe.find("cat") | |
AnimatedGifMe.find("hack-the-planet") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment