Skip to content

Instantly share code, notes, and snippets.

@excid3
Created January 10, 2014 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save excid3/8359294 to your computer and use it in GitHub Desktop.
Save excid3/8359294 to your computer and use it in GitHub Desktop.
Source code for the first ArchRails meetup
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