Sha256: d2aa71163102794bdfdf0d441ae5c81dc566adc4d136fc19ec2a209034eca434
Contents?: true
Size: 618 Bytes
Versions: 3
Compression:
Stored size: 618 Bytes
Contents
# encoding: UTF-8 module Tetra # tetra generate-spec class GenerateSpecCommand < Tetra::BaseCommand option %w(-f --filter), "FILTER", "filter files to be installed by this spec", default: "*.jar" parameter "[POM]", "a pom file path", default: "pom.xml" def execute checking_exceptions do project = Tetra::Project.new(".") ensure_dry_running(false, project) do result_path, conflict_count = Tetra::BuiltPackage.new(project, pom, filter).to_spec print_generation_result(project, result_path, conflict_count) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tetra-0.46.0 | lib/tetra/commands/generate_spec.rb |
tetra-0.45.0 | lib/tetra/commands/generate_spec.rb |
tetra-0.44.0 | lib/tetra/commands/generate_spec.rb |