Sha256: c32515292d8b98427ff5a8bfe665f6e7dc57e0fbd0a81798e7b6c9fb306f0b10

Contents?: true

Size: 340 Bytes

Versions: 12

Compression:

Stored size: 340 Bytes

Contents

module Pah
  module Templates
    class Readme < Pah::Template
      def call
        copy_static_file 'README.md'
        gsub_file 'README.md', /PROJECT/, Pah.configuration.app_name
        gsub_file 'README.md', /RUBY_VERSION/, RUBY_VERSION

        git add: 'README.md'
        git_commit 'Add README file.'
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
pah-0.0.28 lib/pah/templates/readme.rb
pah-0.0.27 lib/pah/templates/readme.rb
pah-0.0.26 lib/pah/templates/readme.rb
pah-0.0.25 lib/pah/templates/readme.rb
pah-0.0.24 lib/pah/templates/readme.rb
pah-0.0.23 lib/pah/templates/readme.rb
pah-0.0.22 lib/pah/templates/readme.rb
pah-0.0.21 lib/pah/templates/readme.rb
pah-0.0.20 lib/pah/templates/readme.rb
pah-0.0.19 lib/pah/templates/readme.rb
pah-0.0.17 lib/pah/templates/readme.rb
pah-0.0.16 lib/pah/templates/readme.rb