Sha256: 7eab9e3088f77406d4abb4d9582a40b4d46f97e57dc1c1a5fcaf90068f155246

Contents?: true

Size: 819 Bytes

Versions: 8

Compression:

Stored size: 819 Bytes

Contents

# frozen_string_literal: true

require "refinements/struct"

module Rubysmith
  module Builders
    # Builds project skeleton Guard support for a red, green, refactor loop.
    class Guard
      using Refinements::Struct

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

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

      def call
        return configuration unless configuration.build_guard

        builder.call(configuration.merge(template_path: "%project_name%/bin/guard.erb"))
               .render
               .permit 0o755

        builder.call(configuration.merge(template_path: "%project_name%/Guardfile.erb")).render
        configuration
      end

      private

      attr_reader :configuration, :builder
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubysmith-6.6.0 lib/rubysmith/builders/guard.rb
rubysmith-6.5.0 lib/rubysmith/builders/guard.rb
rubysmith-6.4.0 lib/rubysmith/builders/guard.rb
rubysmith-6.3.0 lib/rubysmith/builders/guard.rb
rubysmith-6.2.1 lib/rubysmith/builders/guard.rb
rubysmith-6.2.0 lib/rubysmith/builders/guard.rb
rubysmith-6.1.0 lib/rubysmith/builders/guard.rb
rubysmith-6.0.0 lib/rubysmith/builders/guard.rb