mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
* Simplify provider concerns * Update tests * Add UI warning for missing Synth key if family requires external data
15 lines
304 B
Ruby
15 lines
304 B
Ruby
module Upgrader::Provided
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
private
|
|
def fetch_latest_upgrade_candidates_from_provider
|
|
git_repository_provider.fetch_latest_upgrade_candidates
|
|
end
|
|
|
|
def git_repository_provider
|
|
Provider::Github.new
|
|
end
|
|
end
|
|
end
|