Sha256: 98928934f979e3bfbb7f87fbd9d922220e5f06c5739013497f3d455ad3aac87a

Contents?: true

Size: 1.11 KB

Versions: 63

Compression:

Stored size: 1.11 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
          end
        end

        result
      end
    end
  end
end

Version data entries

63 entries across 56 versions & 8 rubygems

Version Path
vagrant-unbundled-2.3.6.0 lib/vagrant/util/scoped_hash_override.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.3.3.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.3.2.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.19.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.18.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.16.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.14.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.10.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.9.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.8.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.7.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.6.2 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.6.1 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.6.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.5.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.4.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.3.0 lib/vagrant/util/scoped_hash_override.rb
vagrant-unbundled-2.2.2.0 lib/vagrant/util/scoped_hash_override.rb