Sha256: f6c397afa8fe44eef887de15eebae18e4b0ab1099bbb9b53923ec3d90839fa3f
Contents?: true
Size: 548 Bytes
Versions: 2
Compression:
Stored size: 548 Bytes
Contents
module SlimLint class NoSuchLinter < StandardError; end # Stores all defined linters. module LinterRegistry @linters = [] class << self attr_reader :linters def included(base) @linters << base end def extract_linters_from(linter_names) linter_names.map do |linter_name| begin SlimLint::Linter.const_get(linter_name) rescue NameError raise NoSuchLinter, "Linter #{linter_name} does not exist" end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
slim_lint-0.2.0 | lib/slim_lint/linter_registry.rb |
slim_lint-0.1.0 | lib/slim_lint/linter_registry.rb |