Skip to content
Snippets Groups Projects
Commit 5abfc7fa authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Define ci entry accessor instead of method_missing

parent 12080ba1
No related branches found
No related tags found
1 merge request!4482Add global entry with before script to new CI config
Pipeline #
Loading
Loading
@@ -55,6 +55,12 @@ module Gitlab
{ class: entry_class,
description: metadata[:description] } }
 
define_method(symbol) do
raise Entry::InvalidError unless valid?
@nodes[symbol].try(:value)
end
(@allowed_nodes ||= {}).merge!(node)
end
end
Loading
Loading
Loading
Loading
@@ -52,13 +52,6 @@ module Gitlab
{}
end
 
def method_missing(name, *args)
super unless allowed_nodes.has_key?(name)
raise InvalidError unless valid?
@nodes[name].try(:value)
end
def add_node(key, entry)
raise NotImplementedError
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment