Sha256: 285d6fef960b515d363c554e716c03fa9aa0b83da371df04db9ad0fb59231743
Contents?: true
Size: 375 Bytes
Versions: 9
Compression:
Stored size: 375 Bytes
Contents
module Plaid module Configure attr_accessor :customer_id, :secret, :environment_location KEYS = [:customer_id, :secret, :environment_location] 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 end end
Version data entries
9 entries across 9 versions & 1 rubygems