Module: Rdm::SpecRunner

Defined in:
lib/rdm/spec_runner.rb

Defined Under Namespace

Classes: CommandGenerator, CommandParams, PackageFetcher, Runner, View

Class Method Summary collapse

Class Method Details

.run(path: nil, package: nil, spec_matcher: nil, show_missing_packages: true, skip_ignored_packages: false) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/rdm/spec_runner.rb', line 2

def self.run(
  path:                  nil, 
  package:               nil, 
  spec_matcher:          nil, 
  show_missing_packages: true, 
  skip_ignored_packages: false
)
  Rdm::SpecRunner::Runner.new(
    path:                  path, 
    package:               package, 
    spec_matcher:          spec_matcher, 
    show_missing_packages: show_missing_packages,
    skip_ignored_packages: skip_ignored_packages
  ).run
end