Sha256: 99a3893f6c6e1500b7d4f22328f8152295c16fb431dd0d0b40d2cf0e638ceb10

Contents?: true

Size: 439 Bytes

Versions: 1

Compression:

Stored size: 439 Bytes

Contents

# encoding: UTF-8

module Gjp
  # gjp generate-kit-spec
  class GenerateKitSpecCommand < Gjp::BaseCommand
    def execute
      checking_exceptions do
        project = Gjp::Project.new(".")
        ensure_dry_running(false, project) do
          result_path, conflict_count = Gjp::SpecGenerator.new(project).generate_kit_spec
          print_generation_result(project, result_path, conflict_count)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gjp-0.39.0 lib/gjp/commands/generate_kit_spec.rb