Sha256: 71e9caecbcea98b4e232122d4410ab6a6adca59ecd6787bb7e383ee6321a47eb

Contents?: true

Size: 723 Bytes

Versions: 1

Compression:

Stored size: 723 Bytes

Contents

require 'thor'
require 'grit'
require 'fileutils'
require 'puppetry/version'

module Puppetry
  class CLI < Thor
    desc "version", "Print application's version"
    def version
      puts "Puppetry v#{Puppetry::Version}"
    end

    desc "new NAME", "Create a new module called NAME"
    def new(name)
      Grit::Git.new(name).clone({}, "git://github.com/stefanozanella/puppet-skeleton", name)
      # This looks rather rough, but maybe it's the simplest way to erase all
      # git history from the folder?
      FileUtils.cd name do
        FileUtils.rm_rf File.expand_path('.git', '.')
        Bundler.with_clean_env do
          system "bundle install --path vendor/bundle"
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppetry_toolbox-0.0.3 lib/puppetry/cli.rb