Sha256: 757e8a8a268b171fcc59d61d72a8670dee7b810c796c2dbb9b53776ccc8503af

Contents?: true

Size: 401 Bytes

Versions: 5

Compression:

Stored size: 401 Bytes

Contents

# frozen_string_literal: true

require 'thor'

module Xezat
  module Command
    class Generate < Thor
      desc 'generate pkgconfig cygport', 'Generate *.pc'
      option :overwrite, type: :boolean, aliases: '-o', desc: 'overwrite *.pc'

      def pkgconfig(cygport)
        require 'xezat/generator/pkgconfig'
        Generator::Pkgconfig.new(options, cygport).generate
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
xezat-0.2.2 lib/xezat/command/generate.rb
xezat-0.2.1 lib/xezat/command/generate.rb
xezat-0.2.0 lib/xezat/command/generate.rb
xezat-0.1.2 lib/xezat/command/generate.rb
xezat-0.1.1 lib/xezat/command/generate.rb