Sha256: 03301de996c89ddb0deda86edbbbb4badd5b17cdf61b42efa2db9390dea269c0
Contents?: true
Size: 724 Bytes
Versions: 2
Compression:
Stored size: 724 Bytes
Contents
require 'contracts' require 'octokit' require 'progress_bar' require_relative 'settings' module GitHub include Contracts Contract String => ArrayOf[({ upstream: Sawyer::Resource, origin: Sawyer::Resource })] def self.fork_all(organization) repositories = %w(public, private).flat_map do |type| api.org_repos(organization, type: type) end progress = ProgressBar.new repositories.length repositories.flat_map do |repository| progress.increment! { upstream: repository, origin: api.fork(repository[:full_name]) } end end Contract None => Octokit::Client def self.api @api ||= Octokit::Client.new access_token: Settings.github_access_token, auto_paginate: true end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-ready-0.8.12 | lib/git-ready/github.rb |
git-ready-0.8.11 | lib/git-ready/github.rb |