Sha256: 04087173cf198a53f8a9cbf4d075075d91609158b57354ba5315432c69a17349

Contents?: true

Size: 821 Bytes

Versions: 41

Compression:

Stored size: 821 Bytes

Contents

# frozen_string_literal: true

require "refinements/structs"

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

      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

41 entries across 41 versions & 1 rubygems

Version Path
rubysmith-4.1.0 lib/rubysmith/builders/guard.rb
rubysmith-4.0.1 lib/rubysmith/builders/guard.rb
rubysmith-4.0.0 lib/rubysmith/builders/guard.rb
rubysmith-3.8.0 lib/rubysmith/builders/guard.rb
rubysmith-3.7.0 lib/rubysmith/builders/guard.rb
rubysmith-3.6.0 lib/rubysmith/builders/guard.rb
rubysmith-3.5.0 lib/rubysmith/builders/guard.rb
rubysmith-3.4.0 lib/rubysmith/builders/guard.rb
rubysmith-3.3.0 lib/rubysmith/builders/guard.rb
rubysmith-3.2.0 lib/rubysmith/builders/guard.rb
rubysmith-3.1.0 lib/rubysmith/builders/guard.rb
rubysmith-3.0.1 lib/rubysmith/builders/guard.rb
rubysmith-3.0.0 lib/rubysmith/builders/guard.rb
rubysmith-2.0.2 lib/rubysmith/builders/guard.rb
rubysmith-2.0.1 lib/rubysmith/builders/guard.rb
rubysmith-2.0.0 lib/rubysmith/builders/guard.rb
rubysmith-1.3.0 lib/rubysmith/builders/guard.rb
rubysmith-1.2.0 lib/rubysmith/builders/guard.rb
rubysmith-1.1.1 lib/rubysmith/builders/guard.rb
rubysmith-1.1.0 lib/rubysmith/builders/guard.rb