Class: GitLabSystemHooksReceiver::App

Inherits:
GitHubWebHooksReceiver::Base
  • Object
show all
Defined in:
lib/gitlab-system-hooks-receiver/app.rb

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args) ⇒ Object (private)



44
45
46
47
48
49
50
# File 'lib/gitlab-system-hooks-receiver/app.rb', line 44

def method_missing(name, *args)
  if name =~ /\Aprocess_.*_event\z/
    puts name
  else
    super
  end
end