Sha256: 365d2230eef7bf299c940a9d3c0d44c49d0853b35ac35b299d5ef5c98bc783aa

Contents?: true

Size: 1.01 KB

Versions: 6

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

module Rubysmith
  module Builders
    module Git
      # Builds project skeleton initial Git commit message.
      class Commit
        def self.call(...) = new(...).call

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

        def call
          return unless configuration.build_git

          builder.call(configuration)
                 .run("git add .", chdir: project_name)
                 .run(
                   %(git commit --all --message "Added project skeleton" --message "#{body}"),
                   chdir: project_name
                 )
        end

        private

        attr_reader :configuration, :builder

        def body
          <<~CONTENT
            Generated with [#{Identity::LABEL}]("https://www.alchemists.io/projects/rubysmith")
            #{Identity::VERSION}.
          CONTENT
        end

        def project_name = configuration.project_name
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubysmith-0.16.1 lib/rubysmith/builders/git/commit.rb
rubysmith-0.16.0 lib/rubysmith/builders/git/commit.rb
rubysmith-0.15.0 lib/rubysmith/builders/git/commit.rb
rubysmith-0.14.0 lib/rubysmith/builders/git/commit.rb
rubysmith-0.13.0 lib/rubysmith/builders/git/commit.rb
rubysmith-0.12.0 lib/rubysmith/builders/git/commit.rb