Sha256: 493fab018963ac24f9638a67b1ff4e6ec3ddcc6dd941dae09150e61123a9e61b
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
module Tins module DeepConstGet if ::Object.method(:const_defined?).arity == 1 # :nocov: # We do not create coverage on 1.8 def self.const_defined_in?(modul, constant) modul.const_defined?(constant) end # :nocov: else def self.const_defined_in?(modul, constant) modul.const_defined?(constant, false) end end if Tins::StringVersion(RUBY_VERSION) < Tins::StringVersion('2.0') def self.deep_const_get(path, start_module = Object) path.to_s.split('::').inject(start_module) do |p, c| case when c.empty? if start_module == Object Object else raise ArgumentError, "top level constants cannot be reached from"\ " start module #{start_module.inspect}" end when const_defined_in?(p, c) p.const_get(c) else begin p.const_missing(c) rescue NameError => e raise ArgumentError, "can't get const #{path}: #{e}" end end end end else def self.deep_const_get(path, start_module = Object) start_module.const_get(path) rescue NameError => e raise ArgumentError, "can't get const #{path}: #{e}" end end def deep_const_get(path, start_module = Object) ::Tins::DeepConstGet.deep_const_get(path, start_module) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tins-1.33.0 | lib/tins/deep_const_get.rb |
tins-1.32.1 | lib/tins/deep_const_get.rb |
tins-1.32.0 | lib/tins/deep_const_get.rb |