We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d8bee commit ee49eccCopy full SHA for ee49ecc
1 file changed
api/ruby/find-inactive-members/find_inactive_members.rb
@@ -14,6 +14,7 @@ def initialize(options={})
14
if options[:check]
15
check_app
16
check_scopes
17
+ check_rate_limit
18
exit 0
19
end
20
@@ -39,6 +40,10 @@ def check_scopes
39
40
info "Scopes: #{@client.scopes.join ','}\n"
41
42
43
+ def check_rate_limit
44
+ info "Rate limit: #{client.rate_limit}\n"
45
+ end
46
+
47
def env_help
48
output=<<-EOM
49
Required Environment variables:
0 commit comments