Sha256: 34fdbeae784e57bff5a22bc7ea3ea6316dfa1995dc3dcf5adc19f572af817bc0

Contents?: true

Size: 789 Bytes

Versions: 358

Compression:

Stored size: 789 Bytes

Contents

class Hash
  def slice(*keep_keys)
    h = {}
    keep_keys.each { |key| h[key] = fetch(key) }
    h
  end unless Hash.method_defined?(:slice)

  def except(*less_keys)
    slice(*keys - less_keys)
  end unless Hash.method_defined?(:except)

  def deep_symbolize_keys
    inject({}) { |result, (key, value)|
      value = value.deep_symbolize_keys if value.is_a?(Hash)
      result[(key.to_sym rescue key) || key] = value
      result
    }
  end unless Hash.method_defined?(:deep_symbolize_keys)

  # deep_merge_hash! by Stefan Rusterholz, see http://www.ruby-forum.com/topic/142809
  MERGER = proc do |key, v1, v2|
    Hash === v1 && Hash === v2 ? v1.merge(v2, &MERGER) : v2
  end
  
  def deep_merge!(data)
    merge!(data, &MERGER)
  end unless Hash.method_defined?(:deep_merge!)
end

Version data entries

358 entries across 321 versions & 65 rubygems

Version Path
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classiccms-0.2.4.pre vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
challah-0.6.0 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
challah-0.5.4 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classicCMS-0.2.3 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classicCMS-0.2.2 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classicCMS-0.2.1 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classicCMS-0.2.0 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
classicCMS-0.1.2 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
challah-0.5.3 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
challah-0.5.2 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
dirty_history-0.5.3 dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
challah-0.5.1 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/activesupport-2.3.14/lib/active_support/vendor/i18n-0.4.1/i18n/core_ext/hash.rb
challah-0.5.0 vendor/bundle/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
dirty_history-0.5.1 dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb
dirty_history-0.5.0 dirty_history/ruby/1.9.1/gems/i18n-0.6.0/lib/i18n/core_ext/hash.rb