Sha256: 621eaa6f111587cd77bd8e5a5134462c9bd7f9d8b9c6c6fc430d32c5a6ba18fa

Contents?: true

Size: 446 Bytes

Versions: 10

Compression:

Stored size: 446 Bytes

Contents

module RocketFuel
  module Precheck
    def self.checks
      @checks
    end

    def self.register_check(check)
      @checks ||= {}
      @checks[check.check_name_value] = check
    end

    def self.fixes
      @fixes
    end

    def self.register_fix(fix)
      @fixes ||= {}
      @fixes[fix.fix_name_value] = fix
    end
  end
end

require 'rocket_fuel/precheck/check_result'

require 'rocket_fuel/precheck/run'
require 'rocket_fuel/fix'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rocket_fuel-0.2.0 lib/rocket_fuel/precheck.rb
rocket_fuel-0.1.0 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.8 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.7 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.6 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.5 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.4 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.3 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.2 lib/rocket_fuel/precheck.rb
rocket_fuel-0.0.1 lib/rocket_fuel/precheck.rb