lib/vacuum.rb in vacuum-2.2.0 vs lib/vacuum.rb in vacuum-3.0.0

- old
+ new

@@ -1,14 +1,15 @@ # frozen_string_literal: true require 'forwardable' + require 'vacuum/request' require 'vacuum/version' -# Vacuum is a Ruby wrapper to the Amazon Product Advertising API. +# Ruby wrapper to the Amazon Product Advertising API module Vacuum class << self extend Forwardable - def_delegator Vacuum::Request, :new + def_delegator 'Vacuum::Request', :new end end