6 lines
83 B
6 lines
83 B
2 years ago
|
module PlatformHelper
|
||
|
def self.is_paas?
|
||
|
!ENV["VCAP_SERVICES"].nil?
|
||
|
end
|
||
|
end
|