Class: Rubysmith::Builders::RSpec::Helper
- Inherits:
-
Object
- Object
- Rubysmith::Builders::RSpec::Helper
- Defined in:
- lib/rubysmith/builders/rspec/helper.rb
Overview
Builds RSpec spec helper for project skeleton.
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(configuration, builder: Builder) ⇒ Helper
constructor
A new instance of Helper.
Constructor Details
Class Method Details
.call ⇒ Object
12 |
# File 'lib/rubysmith/builders/rspec/helper.rb', line 12 def self.call(...) = new(...).call |
Instance Method Details
#call ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'lib/rubysmith/builders/rspec/helper.rb', line 19 def call return configuration unless configuration.build_rspec builder.call(configuration.merge(template_path: "%project_name%/spec/spec_helper.rb.erb")) .render .replace("\n\n\n", "\n\n") configuration end |