lib/adyen.rb in adyen-0.3.7 vs lib/adyen.rb in adyen-0.3.8

- old
+ new

@@ -11,11 +11,11 @@ module Adyen # Version constant for the Adyen plugin. # DO NOT CHANGE THIS VALUE BY HAND. It will be updated automatically by # the gem:release rake task. - VERSION = "0.3.7" + VERSION = "0.3.8" # Loads configuration settings from a Hash. # # @param [Hash] hash The (nested Hash) with configuration variables. # @param [Module] mod The current working module. This parameter is used @@ -45,12 +45,12 @@ # Returns the current Adyen environment, either test or live. # # It will return the +override+ value if set, it will return the value set # using {Adyen.environment=} otherwise. If this value also isn't set, the - # environemtn is determined with {Adyen.autodetect_environment}. + # environment is determined with {Adyen.autodetect_environment}. # - # @param ['test', 'live'] override An environemt to override the default with. + # @param ['test', 'live'] override An environment to override the default with. # @return ['test', 'live'] The Adyen environment that is currently being used. def self.environment(override = nil) override || @environment || Adyen.autodetect_environment end