Class: GitLabSystemHooksReceiver
- Inherits:
-
GithubWebHooksReceiver::Base
- Object
- GithubWebHooksReceiver::Base
- GitLabSystemHooksReceiver
- Defined in:
- lib/gitlab-system-hooks-receiver.rb,
lib/gitlab-system-hooks-receiver/version.rb
Constant Summary collapse
- VERSION =
"0.1.0"
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args) ⇒ Object (private)
43 44 45 46 47 48 49 |
# File 'lib/gitlab-system-hooks-receiver.rb', line 43 def method_missing(name, *args) if name =~ /\Aprocess_.*_event\z/ puts name else super end end |