Module: Vantiv::Environment

Defined in:
lib/vantiv/environment.rb

Constant Summary collapse

PRODUCTION =
:production
CERTIFICATION =
:certification

Class Method Summary collapse

Class Method Details

.certification?Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/vantiv/environment.rb', line 10

def self.certification?
  Vantiv.environment == CERTIFICATION
end

.production?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/vantiv/environment.rb', line 6

def self.production?
  Vantiv.environment == PRODUCTION
end