module AutoGemUpdater

Constants

VERSION

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/auto_gem_updater.rb, line 5
def self.configure
  yield self
end
ignore_gems() click to toggle source
# File lib/auto_gem_updater.rb, line 29
def self.ignore_gems
  @ignore_gems || []
end
ignore_gems=(ignore_gems) click to toggle source
# File lib/auto_gem_updater.rb, line 25
def self.ignore_gems=(ignore_gems)
  @ignore_gems = ignore_gems
end
outdated_options() click to toggle source
# File lib/auto_gem_updater.rb, line 21
def self.outdated_options
  @outdated_options || '--strict'
end
outdated_options=(outdated_options) click to toggle source
# File lib/auto_gem_updater.rb, line 17
def self.outdated_options=(outdated_options)
  @outdated_options = outdated_options.map { |option| " --#{option}" }.join
end
pre_checks() click to toggle source
# File lib/auto_gem_updater.rb, line 13
def self.pre_checks
  @pre_checks || []
end
pre_checks=(pre_checks) click to toggle source
# File lib/auto_gem_updater.rb, line 9
def self.pre_checks=(pre_checks)
  @pre_checks = pre_checks
end