Sha256: b0f44e9264b4b76f9c7fb65cddeba1458e30b8a210449d3a6f92d3dcaf69e5da
Contents?: true
Size: 322 Bytes
Versions: 4
Compression:
Stored size: 322 Bytes
Contents
# frozen_string_literal: true module Easyship # Represents the configuration settings for the Easyship client. class Configuration attr_accessor :url, :api_key, :per_page def initialize @url = nil @api_key = nil @per_page = 100 # Maximum possible number of items per page end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
easyship-0.1.4 | lib/easyship/configuration.rb |
easyship-0.1.3 | lib/easyship/configuration.rb |
easyship-0.1.2 | lib/easyship/configuration.rb |
easyship-0.1.1 | lib/easyship/configuration.rb |