Class: Devtools::Project::Initializer::Rspec

Inherits:
Devtools::Project::Initializer show all
Defined in:
lib/devtools/project/initializer/rspec.rb

Overview

Requires all shared specs in a project’s spec_helper Also installs a configurable unit test timeout

Class Method Summary collapse

Class Method Details

.call(project) ⇒ self

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Call initializer for project

Parameters:

Returns:

  • (self)


17
18
19
20
# File 'lib/devtools/project/initializer/rspec.rb', line 17

def self.call(project)
  new(project).__send__(:call)
  self
end