Sha256: 8715f69739d2dc4c7fa705f33a36bb75dcef425db2b245323a010dbcd261a241
Contents?: true
Size: 358 Bytes
Versions: 136
Compression:
Stored size: 358 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
136 entries across 135 versions & 28 rubygems