10 lines
125 B
Ruby
10 lines
125 B
Ruby
module Utils
|
|
module EnvVars
|
|
class << self
|
|
def pry?
|
|
!ENV["HOMEBREW_PRY"].nil?
|
|
end
|
|
end
|
|
end
|
|
end
|