Class: Neetob::CLI::MonthlyAudit::Misc::Main

Inherits:
Base
  • Object
show all
Defined in:
lib/neetob/cli/monthly_audit/misc/main.rb

Constant Summary

Constants inherited from Base

Base::NEETO_APPS_LIST_LINK

Instance Attribute Summary

Attributes inherited from Base

#ui

Instance Method Summary collapse

Methods included from Utils

#camel_case_to_slug, #is_upper?, #symbolize_keys

Constructor Details

#initializeMain



11
12
13
# File 'lib/neetob/cli/monthly_audit/misc/main.rb', line 11

def initialize
  super()
end

Instance Method Details

#runObject



15
16
17
18
19
20
21
22
23
# File 'lib/neetob/cli/monthly_audit/misc/main.rb', line 15

def run
  ui.success("# 4. Running miscellaneous checks")
  ui.info "\n"
  ui.success("## 4.1. [Manual] Checking whether we are using Sparkpost sub-account for all the apps")
  SparkpostSubAccountUsedForAllApps.new.run
  ui.info "\n"
  ui.success("## 4.2. Checking whether redirections are set correctly")
  RedirectionsWorkingCorrectly.new.run
end