Sha256: 7192c0b095569ac17aab57e4424927ffe029c10abbf39d0e97752e0867222e01
Contents?: true
Size: 360 Bytes
Versions: 20
Compression:
Stored size: 360 Bytes
Contents
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')) require File.join(dir, 'httparty') require 'pp' class Rubyurl include HTTParty base_uri 'rubyurl.com' def self.shorten( website_url ) post( '/api/links.json', :query => { :link => { :website_url => website_url } } ) end end pp Rubyurl.shorten( 'http://istwitterdown.com/' )
Version data entries
20 entries across 20 versions & 4 rubygems