Method: Checkup::Dependency.all

Defined in:
lib/checkup/dependency.rb

.allObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/checkup/dependency.rb', line 6

def self.all
  @all ||= {
    'mail' => {
      :require => 'mail',
      :version => '>= 2.4.0',
      :for     => 'Sending Emails (Mail Notifier)'
    },
    'httparty' => {
      :require => 'httparty',
      :version => '>= 0',
      :for     => 'Http up check'
    }
  }
end