10 lines
125 B
Ruby
Raw Normal View History

2018-03-24 20:04:45 +05:30
module Utils
module EnvVars
class << self
def pry?
!ENV["HOMEBREW_PRY"].nil?
end
end
end
end