method
definition_method
v2_6_3 -
Show latest stable
- Class:
Bundler::Runtime
definition_method(meth)private
No documentation available.
# File lib/bundler/runtime.rb, line 105
def self.definition_method(meth)
define_method(meth) do
raise ArgumentError, "no definition when calling Runtime##{meth}" unless @definition
@definition.send(meth)
end
end