lpender/bummr

View on GitHub
lib/bummr/prompt.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Bummr
  module Prompt
    def yes?(*args)
      headless? || super
    end

    private

    def headless?
      HEADLESS == true ||
        HEADLESS == "true"
    end
  end
end