Sha256: 955802d5c69d21e910a462f0ff1e211b761e077c6187ab81b7b641455ef7d202
Contents?: true
Size: 490 Bytes
Versions: 10
Compression:
Stored size: 490 Bytes
Contents
#!/usr/bin/env ruby if $PROGRAM_NAME == __FILE__ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) end require 'thor' require 'version' 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
10 entries across 10 versions & 1 rubygems