Class: Rubysmith::Builders::RSpec::Helper

Inherits:
Object
  • Object
show all
Defined in:
lib/rubysmith/builders/rspec/helper.rb

Overview

Builds RSpec spec helper for project skeleton.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(configuration, builder: Builder) ⇒ Helper

Returns a new instance of Helper.



14
15
16
17
# File 'lib/rubysmith/builders/rspec/helper.rb', line 14

def initialize configuration, builder: Builder
  @configuration = configuration
  @builder = builder
end

Class Method Details

.callObject



12
# File 'lib/rubysmith/builders/rspec/helper.rb', line 12

def self.call(...) = new(...).call

Instance Method Details

#callObject



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