Sha256: 60fbf10fe7cfdd45df67e0021be2fb69e45b8d80a2c05baca0bf8f9a0255e8f0

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

module Cucumber
  module Constantize #:nodoc:
    def constantize(camel_cased_word)
      try = 0
      begin
        try += 1
        names = camel_cased_word.split('::')
        names.shift if names.empty? || names.first.empty?

        constant = ::Object
        names.each do |name|
          constant = constantize_name(constant, name)
        end
        constant
      rescue NameError => e
        require underscore(camel_cased_word)
        if try < 2
          retry
        else
          raise e
        end
      end
    end

    # Snagged from active_support
    def underscore(camel_cased_word)
      camel_cased_word.to_s.gsub(/::/, '/').
        gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
        gsub(/([a-z\d])([A-Z])/,'\1_\2').
        tr("-", "_").
        downcase
    end

    private
      def constantize_name(constant, name)
        if Cucumber::RUBY_1_8_7
          constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
        else
          constant.const_defined?(name, false) ? constant.const_get(name, false) : constant.const_missing(name)
        end
      end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cucumber-1.3.2 lib/cucumber/constantize.rb
cucumber-1.3.1 lib/cucumber/constantize.rb
cucumber-1.3.0 lib/cucumber/constantize.rb
cucumber-1.2.5 lib/cucumber/constantize.rb
cucumber-1.2.3 lib/cucumber/constantize.rb
cucumber-1.2.2 lib/cucumber/constantize.rb