Sha256: f5ec9634a0b606d503457b8a1b231032c84e334206a35dec523089488eab9927
Contents?: true
Size: 404 Bytes
Versions: 27
Compression:
Stored size: 404 Bytes
Contents
require 'thor/group' module Berkshelf class BaseGenerator < Thor::Group class << self def source_root Berkshelf.root.join('generator_files') end end shell = Berkshelf.ui argument :path, type: :string, required: true include Thor::Actions private def target @target ||= Pathname.new(File.expand_path(path)) end end end
Version data entries
27 entries across 27 versions & 1 rubygems