Sha256: 44153aeb9dc93b68ce00747e18277035af18472284d4964a464bb1deefde7190

Contents?: true

Size: 206 Bytes

Versions: 6

Compression:

Stored size: 206 Bytes

Contents

module Twitterland
  class Autoff
    include HTTParty
    base_uri 'autoff.com/api'
    format :json
  
    def self.user(username)
      get("/#{username}").map{|u| u.gsub('@', '')}
    end
    
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
twitterland-0.4.6 lib/twitterland/autoff.rb
twitterland-0.4.5 lib/twitterland/autoff.rb
twitterland-0.4.4 lib/twitterland/autoff.rb
twitterland-0.4.3 lib/twitterland/autoff.rb
twitterland-0.4.2 lib/twitterland/autoff.rb
twitterland-0.4.1 lib/twitterland/autoff.rb