Method: AnythingHub::Github#method_missing

Defined in:
lib/anything-hub/github.rb

#method_missing(action, *args) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/anything-hub/github.rb', line 14

def method_missing(action, *args)
  if client.respond_to?(action.to_s)
    client.send(action, *args)
  else
    super
  end
end