Sha256: c0027715062c9030179ac325ad34ac17f3363d3ddbf521d7ae25df4def3543ec

Contents?: true

Size: 383 Bytes

Versions: 4

Compression:

Stored size: 383 Bytes

Contents

require 'pathname'

module PuppetMagnum
  class Verify < Thor::Group

    include Thor::Actions
    include Thor::Shell

    argument :path,        type: :string, required: true
    argument :module_name, type: :string, required: true

    def verify_module
      # FIXME
    end

    private

    def target
      @target ||= Pathname.new(File.expand_path(path))
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-magnum-4.1.1 lib/puppet-magnum/utility/verify.rb
puppet-magnum-4.0.4 lib/puppet-magnum/utility/verify.rb
puppet-magnum-4.0.3 lib/puppet-magnum/utility/verify.rb
puppet-magnum-4.0.2 lib/puppet-magnum/utility/verify.rb