Sha256: 27e33a663eafa27efd223ea7651718e5f72767e7552843afb440619d30f7499a

Contents?: true

Size: 1.16 KB

Versions: 19

Compression:

Stored size: 1.16 KB

Contents

module Vagrant
  module Util
    # This allows for hash options to be overridden by a scope key
    # prefix. An example speaks best here. Imagine the following hash:
    #
    #     original = {
    #       :id => "foo",
    #       :mitchellh__id => "bar",
    #       :mitchellh__other => "foo"
    #     }
    #
    #     scoped = scoped_hash_override(original, "mitchellh")
    #
    #     scoped == {
    #       :id => "bar",
    #       :other => "foo"
    #     }
    #
    module ScopedHashOverride
      def scoped_hash_override(original, scope)
        # Convert the scope to a string in case a symbol was given since
        # we use string comparisons for everything.
        scope = scope.to_s

        # Shallow copy the hash for the result
        result = original.dup

        original.each do |key, value|
          parts = key.to_s.split("__", 2)

          # If we don't have the proper parts, then bail
          next if parts.length != 2

          # If this is our scope, then override
          if parts[0] == scope
            result[parts[1].to_sym] = value
            result.delete(key)
          end
        end

        result
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 6 rubygems

Version Path
tamtam-vagrant-reload-1.1.3 vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb
tamtam-vagrant-reload-1.1.2 vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb
tamtam-vagrant-reload-1.1.1 vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb
tamtam-vagrant-reload-1.1 vendor/cache/vagrant-0ac2a8738841/lib/vagrant/util/scoped_hash_override.rb
tnargav-1.3.6 lib/vagrant/util/scoped_hash_override.rb
tnargav-1.3.3 lib/vagrant/util/scoped_hash_override.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/lib/vagrant/util/scoped_hash_override.rb
tnargav-1.2.3 lib/vagrant/util/scoped_hash_override.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/lib/vagrant/util/scoped_hash_override.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/lib/vagrant/util/scoped_hash_override.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/lib/vagrant/util/scoped_hash_override.rb
tnargav-1.2.2 lib/vagrant/util/scoped_hash_override.rb
vagrantup-1.1.3 lib/vagrant/util/scoped_hash_override.rb
vagrantup-1.1.2 lib/vagrant/util/scoped_hash_override.rb
vagrantup-1.1.1 lib/vagrant/util/scoped_hash_override.rb
vagrantup-1.1.0 lib/vagrant/util/scoped_hash_override.rb
vagrantup-1.1.4 lib/vagrant/util/scoped_hash_override.rb
vagrant-actionio-0.0.9 vendor/bundle/bundler/gems/vagrant-c74251a1d9c0/lib/vagrant/util/scoped_hash_override.rb
vagrant-lxc-0.0.1 vendor/vagrant/lib/vagrant/util/scoped_hash_override.rb