From 51e6012ca1caffd50db3efa57f297e1fd636b3e8 Mon Sep 17 00:00:00 2001 From: Joel McCoy Date: Thu, 16 Apr 2015 17:37:32 -0400 Subject: [PATCH] Fix Archive.new call? --- boodoo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boodoo.rb b/boodoo.rb index 503025d..49def87 100644 --- a/boodoo.rb +++ b/boodoo.rb @@ -16,7 +16,7 @@ module Ebooks::Boodoo def self.make_Model(username: nil, path: nil, ignore_cloud: false) # return CloudModel unless Cloudinary is missing or instructed not to. if !ignore_cloud && has_cloud? - CloudModel.new(username, path) + CloudModel.new(username, path: path) else Model.new end