mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
12 lines
251 B
Ruby
12 lines
251 B
Ruby
|
module Upgrader::Provided
|
||
|
extend ActiveSupport::Concern
|
||
|
include Providable
|
||
|
|
||
|
class_methods do
|
||
|
private
|
||
|
def fetch_latest_upgrade_candidates_from_provider
|
||
|
git_repository_provider.fetch_latest_upgrade_candidates
|
||
|
end
|
||
|
end
|
||
|
end
|