module Vantiv::Environment

Constants

POSTCERTIFICATION
PRECERTIFICATION
PRODUCTION

Public Class Methods

postcertification?() click to toggle source
# File lib/vantiv/environment.rb, line 7
def self.postcertification?
  Vantiv.environment == POSTCERTIFICATION
end
precertification?() click to toggle source
# File lib/vantiv/environment.rb, line 11
def self.precertification?
  Vantiv.environment == PRECERTIFICATION
end
production?() click to toggle source
# File lib/vantiv/environment.rb, line 15
def self.production?
  Vantiv.environment == PRODUCTION
end