Sha256: 12a0d8a119c8d1ecafdb76d95bf3ae121795af4508a32687aae9579d38835f96

Contents?: true

Size: 222 Bytes

Versions: 4

Compression:

Stored size: 222 Bytes

Contents

module Pah
  module Templates
    class Git < Pah::Template
      def call
        copy_static_file '.gitignore'

        git :init
        git add: '--all'
        git_commit 'Initial commit.'
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pah-0.0.20 lib/pah/templates/git.rb
pah-0.0.19 lib/pah/templates/git.rb
pah-0.0.17 lib/pah/templates/git.rb
pah-0.0.16 lib/pah/templates/git.rb