Sha256: 31b0b4ba3887668d044d58c686a81b5c664c0fbdaa61e74e4b48ad973ea6e8f4

Contents?: true

Size: 1.49 KB

Versions: 84

Compression:

Stored size: 1.49 KB

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Hash #:nodoc:
      module Keys
        # Return a new hash with all keys converted to strings.
        def stringify_keys
          inject({}) do |options, (key, value)|
            options[key.to_s] = value
            options
          end
        end

        # Destructively convert all keys to strings.
        def stringify_keys!
          keys.each do |key|
            unless key.class.to_s == "String" # weird hack to make the tests run when string_ext_test.rb is also running
              self[key.to_s] = self[key]
              delete(key)
            end
          end
          self
        end

        # Return a new hash with all keys converted to symbols.
        def symbolize_keys
          inject({}) do |options, (key, value)|
            options[key.to_sym] = value
            options
          end
        end

        # Destructively convert all keys to symbols.
        def symbolize_keys!
          keys.each do |key|
            unless key.is_a?(Symbol)
              self[key.to_sym] = self[key]
              delete(key)
            end
          end
          self
        end

        alias_method :to_options,  :symbolize_keys
        alias_method :to_options!, :symbolize_keys!

        def assert_valid_keys(*valid_keys)
          unknown_keys = keys - [valid_keys].flatten
          raise(ArgumentError, "Unknown key(s): #{unknown_keys.join(", ")}") unless unknown_keys.empty?
        end
      end
    end
  end
end

Version data entries

84 entries across 84 versions & 6 rubygems

Version Path
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb
activesupport-1.2.2 lib/active_support/core_ext/hash/keys.rb
activesupport-1.4.0 lib/active_support/core_ext/hash/keys.rb
activesupport-1.2.3 lib/active_support/core_ext/hash/keys.rb
activesupport-1.2.4 lib/active_support/core_ext/hash/keys.rb
activesupport-1.4.2 lib/active_support/core_ext/hash/keys.rb
activesupport-1.2.1 lib/active_support/core_ext/hash/keys.rb
activesupport-1.3.0 lib/active_support/core_ext/hash/keys.rb
activesupport-1.3.1 lib/active_support/core_ext/hash/keys.rb
activesupport-1.4.4 lib/active_support/core_ext/hash/keys.rb
activesupport-1.2.5 lib/active_support/core_ext/hash/keys.rb
activesupport-1.4.1 lib/active_support/core_ext/hash/keys.rb
activesupport-1.4.3 lib/active_support/core_ext/hash/keys.rb