# File lib/specinfra/helper/configuration.rb, line 29
      def build_configurations
        Specinfra::Configuration.defaults.keys.each do |c|
          if self.respond_to?(c.to_sym)
            value = self.send(c)
          else
            value = RSpec.configuration.send(c) if defined?(RSpec)
          end
          next if c == :lxc && defined?(Serverspec::Type::Lxc) && value.is_a?(Serverspec::Type::Lxc)
          Specinfra::Configuration.instance_variable_set("@#{c}", value)
        end
      end