Module: HasHelpers::CoreExt::Proc
- Defined in:
- lib/has_helpers/core_ext/proc.rb
Instance Method Summary collapse
-
#to_constant(name, **options) ⇒ Object
Examples proc { [SOME_DYNAMIC_CONSTANT, AND_ANOTHER] }.to_constant("LAZY_GROUP").
Instance Method Details
#to_constant(name, **options) ⇒ Object
Examples
proc { [SOME_DYNAMIC_CONSTANT, AND_ANOTHER] }.to_constant("LAZY_GROUP")
9 10 11 |
# File 'lib/has_helpers/core_ext/proc.rb', line 9 def to_constant(name, **) ::HasHelpers::Constant::Definition.new(name: name, **, &self) end |