lib/easyship/configuration.rb in easyship-0.1.0 vs lib/easyship/configuration.rb in easyship-0.1.1

- old
+ new

@@ -1,13 +1,14 @@ # frozen_string_literal: true module Easyship # Represents the configuration settings for the Easyship client. class Configuration - attr_accessor :url, :api_key + 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