Module: Kernel

Defined in:
lib/mspec/helpers/const_lookup.rb

Instance Method Summary collapse

Instance Method Details

#const_lookup(c) ⇒ Object



2
3
4
5
6
7
8
9
# File 'lib/mspec/helpers/const_lookup.rb', line 2

def const_lookup(c)
  names = c.split '::'
  names.shift if names.first.empty?
  names.inject(Object) do |m, n|
    defined = RUBY_VERSION =~ /^1.9/ ? m.const_defined?(n, false) : m.const_defined?(n)
    defined ? m.const_get(n) : m.const_missing(n)
  end
end