class Object
Constants
- API_CALL_RETRY_COUNT
- CONTRIBUTION_THRESHOLD
- FORKS_THRESHOLD
Forks
- KEYCHAIN_SERVICE
- REFACTORING_THRESHOLD
- STARS_THRESHOLD
Stars
- WATCHERS_THRESHOLD
Watchers
Public Instance Methods
helper(count, block)
click to toggle source
There must be a better way to deal with GitHub caching…
# File lib/github_bus_factor.rb, line 21 def helper(count, block) return unless count > 0 return if !block.call(count).nil? puts "Waiting for GitHub cache. Will retry in 3 seconds…" sleep(3) helper(count - 1, block) end