Browse Source

Add `tootctl --version` (#9835)

master
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
3c218cd76d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      lib/cli.rb

+ 8
- 0
lib/cli.rb View File

@@ -7,6 +7,7 @@ require_relative 'mastodon/accounts_cli'
require_relative 'mastodon/feeds_cli'
require_relative 'mastodon/settings_cli'
require_relative 'mastodon/domains_cli'
require_relative 'mastodon/version'

module Mastodon
class CLI < Thor
@@ -31,5 +32,12 @@ module Mastodon

desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains'
subcommand 'domains', Mastodon::DomainsCLI

map %w(--version -v) => :version

desc 'version', 'Show version'
def version
say(Mastodon::Version.to_s)
end
end
end

Loading…
Cancel
Save