# File lib/travis/cli/env.rb, line 48
      def remove_vars
        env_vars.each do |var|
          next if block_given? and not yield(var)
          say color('[x] ', [:red, :bold]) + "removing environment variable #{color "$#{var.name}", :info}"
          var.delete
        end
      end