2018-03-24 22:18:50 +05:30

10 lines
125 B
Ruby

module Utils
module EnvVars
class << self
def pry?
!ENV["HOMEBREW_PRY"].nil?
end
end
end
end