Module: Walt::Support
- Defined in:
- lib/walt/support/const_get.rb,
lib/walt/support/attr_default.rb
Defined Under Namespace
Modules: AttrDefault
Class Method Summary collapse
-
.constant(base, value) ⇒ Object
Constant.for(“UIViewAnimationOption”, value).
Class Method Details
.constant(base, value) ⇒ Object
Constant.for(“UIViewAnimationOption”, value)
9 10 11 12 13 |
# File 'lib/walt/support/const_get.rb', line 9 def constant(base, value) return value if value.is_a? Numeric value = value.to_s.camelize Kernel.const_get("#{base}#{value}") end |