module OldPlaid::Configure

Constants

KEYS

Attributes

customer_id[RW]
environment_location[RW]
secret[RW]

Public Instance Methods

config() { |self| ... } click to toggle source
# File lib/old_plaid/config.rb, line 7
def config
  yield self

  # Add trailing slash to api url if it is not present
  if self.environment_location[-1] != '/'
    self.environment_location += '/'
  end

  self
end