Sha256: 9e1799d1d2a8d3891f5576cdadc03c0786d0257207368a741f6877ac28754fec
Contents?: true
Size: 574 Bytes
Versions: 53
Compression:
Stored size: 574 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true if $PROGRAM_NAME == __FILE__ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) end require 'thor' require 'version' # The class defining the CLI interface of the plugin. class DangerSwiftlintCLI < Thor desc 'version', 'The version of the installed danger-swiftlint plugin' def version puts DangerSwiftlint::VERSION end desc 'swiftlint_version', 'The SwiftLint version used by the plugin' def swiftlint_version puts DangerSwiftlint::SWIFTLINT_VERSION end end DangerSwiftlintCLI.start(ARGV)
Version data entries
53 entries across 53 versions & 1 rubygems