Sha256: c7e710748ff1ee6eefb03661d7f85ba2a09dd6f52c2a42b779251cb1243dfb61
Contents?: true
Size: 853 Bytes
Versions: 10
Compression:
Stored size: 853 Bytes
Contents
# frozen_string_literal: true require "refinements/structs" module Gemsmith module Builders module RSpec # Builds RSpec spec helper for project skeleton. class Helper using Refinements::Structs def self.call(...) = new(...).call def initialize configuration, builder: Rubysmith::Builder @configuration = configuration @builder = builder end def call return configuration unless configuration.build_rspec && configuration.build_cli builder.call(configuration.merge(template_path: "%project_name%/spec/spec_helper.rb.erb")) .touch .replace("%r(^/spec/)", "%r((.+/container\\.rb|^/spec/))") configuration end private attr_reader :configuration, :builder end end end end
Version data entries
10 entries across 10 versions & 1 rubygems