Created
October 20, 2011 08:05
-
-
Save richo/1300646 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Twat::Endpoints | |
class Identica | |
def initialize | |
module Twitter | |
module Request | |
def request(method, path, params, options) | |
path.gsub!(%r|^/1|, '') | |
super(method, path, params, options) | |
end | |
end | |
end | |
end | |
def url | |
"https://identi.ca/api" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment