Sha256: d304328c5454cb906d7da6849167f77e08234db13c17a91f231025b983a8ea08

Contents?: true

Size: 429 Bytes

Versions: 7

Compression:

Stored size: 429 Bytes

Contents

# encoding: UTF-8

module Tetra
  # tetra move-jars-to-kit
  class MoveJarsToKitCommand < Tetra::BaseCommand
    def execute
      checking_exceptions do
        project = Tetra::Project.new(".")

        ensure_dry_running(false, project) do
          project.purge_jars.each do |original, final|
            puts "Replaced #{original} with symlink pointing to to #{final}"
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tetra-0.46.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.45.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.44.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.43.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.42.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.41.0 lib/tetra/commands/move_jars_to_kit.rb
tetra-0.40.0 lib/tetra/commands/move_jars_to_kit.rb