Module: GitHubBub

Defined in:
lib/git_hub_bub.rb,
lib/git_hub_bub/request.rb,
lib/git_hub_bub/version.rb,
lib/git_hub_bub/response.rb

Defined Under Namespace

Classes: Request, RequestError, Response

Constant Summary collapse

VERSION =
"0.0.2"

Class Method Summary collapse

Class Method Details

.delete(*args) ⇒ Object



34
35
36
# File 'lib/git_hub_bub.rb', line 34

def delete(*args)
  Request.delete(*args)
end

.get(*args) ⇒ Object



18
19
20
# File 'lib/git_hub_bub.rb', line 18

def get(*args)
  Request.get(*args)
end

.head(*args) ⇒ Object



14
15
16
# File 'lib/git_hub_bub.rb', line 14

def head(*args)
  Request.head(*args)
end

.patch(*args) ⇒ Object



30
31
32
# File 'lib/git_hub_bub.rb', line 30

def patch(*args)
  Request.patch(*args)
end

.post(*args) ⇒ Object



22
23
24
# File 'lib/git_hub_bub.rb', line 22

def post(*args)
  Request.post(*args)
end

.put(*args) ⇒ Object



26
27
28
# File 'lib/git_hub_bub.rb', line 26

def put(*args)
  Request.put(*args)
end