Sha256: b31b86053428fabd514eee5b39428741d37359ccec4d40627f1cadac2af93d82

Contents?: true

Size: 1.14 KB

Versions: 14

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

module Gemsmith
  module Builders
    module Git
      # Builds project skeleton initial Git commit message.
      class Commit
        include Import[:specification]

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

        def initialize configuration, builder: Rubysmith::Builder, **dependencies
          super(**dependencies)

          @configuration = configuration
          @builder = builder
        end

        def call
          return configuration 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
                 )

          configuration
        end

        private

        attr_reader :configuration, :builder

        def body
          <<~CONTENT
            Generated with [#{specification.label}](#{specification.homepage_url})
            #{specification.version}.
          CONTENT
        end

        def project_name = configuration.project_name
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gemsmith-19.0.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.9.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.8.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.7.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.6.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.5.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.4.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.3.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.2.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.1.1 lib/gemsmith/builders/git/commit.rb
gemsmith-18.1.0 lib/gemsmith/builders/git/commit.rb
gemsmith-18.0.2 lib/gemsmith/builders/git/commit.rb
gemsmith-18.0.1 lib/gemsmith/builders/git/commit.rb
gemsmith-18.0.0 lib/gemsmith/builders/git/commit.rb