bin/commands/team.rb in slack-ruby-client-0.14.2 vs bin/commands/team.rb in slack-ruby-client-0.14.3

- old
+ new

@@ -21,9 +21,10 @@ end g.desc 'This method provides information about your team.' g.long_desc %( This method provides information about your team. ) g.command 'info' do |c| + c.flag 'team', desc: 'Team to get info on, if omitted, will return information about the current team. Will only return team that the authenticated token is allowed to see through external shared channels.' c.action do |_global_options, options, _args| puts JSON.dump($client.team_info(options)) end end