class Crep::AppSource

Attributes

version[R]

Public Instance Methods

apps() click to toggle source
# File lib/crep/model/app_source/app_source.rb, line 11
def apps
  raise 'AppSource subclass has to implement the `apps` method.'
end
configure() click to toggle source
# File lib/crep/model/app_source/app_source.rb, line 7
def configure
  CrepLogger.info('Configuration of the CrashSource can happen in the `configure` method')
end
versions(_app_identifier) click to toggle source

versions returns the versions for the given app identifier

# File lib/crep/model/app_source/app_source.rb, line 21
def versions(_app_identifier)
  raise 'AppSource subclass has to implement the `versions` method.'
end
versions_for_bundle_identifier(_bundle_identifier) click to toggle source

versions_for_bundle_identifier returns the versions for the first found app with the given bundle identifier

# File lib/crep/model/app_source/app_source.rb, line 16
def versions_for_bundle_identifier(_bundle_identifier)
  raise 'AppSource subclass has to implement the `versions_for_bundle_identifier` method.'
end