Class: Ayadn::Diagnostics

Inherits:
Thor
  • Object
show all
Defined in:
lib/ayadn/diagnostics.rb

Instance Method Summary collapse

Instance Method Details

#accountsObject



21
22
23
24
25
# File 'lib/ayadn/diagnostics.rb', line 21

def accounts
  obj = CheckAccounts.new
  obj.check
  obj.status.say_end
end

#adnObject



14
15
16
17
18
# File 'lib/ayadn/diagnostics.rb', line 14

def adn
  obj = CheckADN.new
  obj.check
  obj.status.say_end
end

#allObject



35
36
37
38
39
40
41
42
43
44
45
# File 'lib/ayadn/diagnostics.rb', line 35

def all
  obj = CheckADN.new
  obj.check
  obj = CheckAyadn.new
  obj.check
  obj = CheckAccounts.new
  obj.check
  obj = CheckNiceRank.new
  obj.check
  obj.status.say_end
end

#ayadnObject



28
29
30
31
32
# File 'lib/ayadn/diagnostics.rb', line 28

def ayadn
  obj = CheckAyadn.new
  obj.check
  obj.status.say_end
end

#nicerankObject



7
8
9
10
11
# File 'lib/ayadn/diagnostics.rb', line 7

def nicerank
  obj = CheckNiceRank.new
  obj.check
  obj.status.say_end
end