lib/git/multi.rb in git-multi-1.1.0 vs lib/git/multi.rb in git-multi-1.2.0
- old
+ new
@@ -7,11 +7,10 @@
require 'octokit'
require 'sawyer'
require 'ext/dir'
require 'ext/string'
-require 'ext/notify'
require 'ext/kernel'
require 'ext/commify'
require 'ext/sawyer/resource'
require 'git/hub'
@@ -153,10 +152,9 @@
def repositories
if File.size?(REPOSITORIES)
# rubocop:disable Security/MarshalLoad
@repositories ||= Marshal.load(File.read(REPOSITORIES)).tap do |projects|
- notify "Finished loading #{REPOSITORIES}"
projects.each_with_index do |project, index|
# ensure 'project' has handle on an Octokit client
project.client = Git::Hub.send(:client)
# adorn 'project', which is a Sawyer::Resource
project.parent_dir = Pathname.new(File.join(WORKAREA, project.owner.login))