Sha256: 41807d47a7d0b25c5a41a96cc3a04fb0bec5f53c2bf75805da2c9c89caffdcaa

Contents?: true

Size: 1.5 KB

Versions: 41

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true

module ThemeCheck
  module StringHelpers
    extend self

    # Removes the module part from the expression in the string.
    # Ported from ActiveSupport
    #
    #   demodulize('ActiveSupport::Inflector::Inflections') # => "Inflections"
    #   demodulize('Inflections')                           # => "Inflections"
    #   demodulize('::Inflections')                         # => "Inflections"
    #   demodulize('')                                      # => ""
    #
    # See also #deconstantize.
    def demodulize(path)
      path = path.to_s
      if (i = path.rindex("::"))
        path[(i + 2)..-1]
      else
        path
      end
    end

    # Makes an underscored, lowercase form from the expression in the string.
    # Base on ActiveSupport's
    #
    # Changes '::' to '/' to convert namespaces to paths.
    #
    #   underscore('ActiveModel')         # => "active_model"
    #   underscore('ActiveModel::Errors') # => "active_model/errors"
    #
    # As a rule of thumb you can think of +underscore+ as the inverse of
    # #camelize, though there are cases where that does not hold:
    #
    #   camelize(underscore('SSLError'))  # => "SslError"
    def underscore(camel_cased_word)
      return camel_cased_word unless /[A-Z-]|::/.match?(camel_cased_word)
      word = camel_cased_word.to_s.gsub("::", "/")
      word.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2')
      word.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
      word.tr!("-", "_")
      word.downcase!
      word
    end
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
theme-check-1.15.0 lib/theme_check/string_helpers.rb
theme-check-1.14.0 lib/theme_check/string_helpers.rb
theme-check-1.13.0 lib/theme_check/string_helpers.rb
theme-check-1.12.1 lib/theme_check/string_helpers.rb
theme-check-1.12.0 lib/theme_check/string_helpers.rb
theme-check-1.11.0 lib/theme_check/string_helpers.rb
theme-check-1.10.3 lib/theme_check/string_helpers.rb
theme-check-1.10.2 lib/theme_check/string_helpers.rb
theme-check-1.10.1 lib/theme_check/string_helpers.rb
theme-check-1.10.0 lib/theme_check/string_helpers.rb
theme-check-1.9.2 lib/theme_check/string_helpers.rb
theme-check-1.9.1 lib/theme_check/string_helpers.rb
theme-check-1.9.0 lib/theme_check/string_helpers.rb
theme-check-1.8.0 lib/theme_check/string_helpers.rb
theme-check-1.7.2 lib/theme_check/string_helpers.rb
theme-check-1.7.1 lib/theme_check/string_helpers.rb
theme-check-1.7.0 lib/theme_check/string_helpers.rb
theme-check-1.6.2 lib/theme_check/string_helpers.rb
theme-check-1.6.1 lib/theme_check/string_helpers.rb
theme-check-1.6.0 lib/theme_check/string_helpers.rb