Method: Bj::Util::ModuleMethods#const_or_env

Defined in:
lib/bj/util.rb

#const_or_env(const, &block) ⇒ Object



18
19
20
# File 'lib/bj/util.rb', line 18

def const_or_env const, &block
  constant_get(const){ ENV[const] || block.call }
end