Module: Chkex
- Defined in:
- lib/chkex.rb,
lib/chkex/checker.rb,
lib/chkex/version.rb,
lib/chkex/domain_info.rb,
lib/chkex/sources/one.rb,
lib/chkex/file_handler.rb,
lib/chkex/sources/base.rb,
lib/chkex/sources/list.rb
Defined Under Namespace
Modules: Source
Classes: Checker, DomainInfo, DomainNotFound, FileHandler, FileNotFound, InitializationError
Constant Summary
collapse
- VERSION =
"0.1.1"
Class Method Summary
collapse
Class Method Details
.run(source) ⇒ Object
32
33
34
|
# File 'lib/chkex.rb', line 32
def self.run(source)
Checker.new(source, :multiple).test
end
|
.run_one(source) ⇒ Object
36
37
38
|
# File 'lib/chkex.rb', line 36
def self.run_one(source)
Checker.new(source, :one).test
end
|