lib/checkoff/clients.rb in checkoff-0.17.0 vs lib/checkoff/clients.rb in checkoff-0.18.0

- old
+ new

@@ -1,11 +1,11 @@ #!/usr/bin/env ruby # frozen_string_literal: true require 'forwardable' -require_relative 'config_loader' +require_relative 'internal/config_loader' require 'asana' # https://developers.asana.com/docs/clients module Checkoff @@ -16,10 +16,10 @@ DAY = 24 * HOUR REALLY_LONG_CACHE_TIME = HOUR * 1 LONG_CACHE_TIME = MINUTE * 15 SHORT_CACHE_TIME = MINUTE - def initialize(config: Checkoff::ConfigLoader.load(:asana), + def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana), asana_client_class: Asana::Client) @config = config @asana_client_class = asana_client_class end