Class: Notifyor::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/notifyor/cli.rb

Instance Method Summary collapse

Instance Method Details

#boot_systemObject



6
7
8
9
10
11
# File 'lib/notifyor/cli.rb', line 6

def boot_system
  require './config/application'
  ActiveSupport::Dependencies.require_dependency 'notifyor'
  ::Rails.application.require_environment!
  ::Rails.application.eager_load!
end

#check_notificationsObject



44
45
46
47
48
49
50
51
52
53
# File 'lib/notifyor/cli.rb', line 44

def check_notifications
  connection = Notifyor::Remote::Connection.new
  begin
    connection.build_tunnel
    connection.build_redis_tunnel_connection
    connection.subscribe_to_redis
  rescue => e
    STDOUT.write "Could not establish SSH tunnel. Reason: #{e.message}"
  end
end

#parseObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/notifyor/cli.rb', line 13

def parse
  OptionParser.new do |opts|
    opts.banner = 'Usage: notify_me [options]'

    opts.on('-v', '--version',
            'Show the current version of this gem') do
      puts "Notifyor Version: #{::Notifyor::VERSION}"; exit
    end

    opts.on('--ssh-host host', 'Provide the host address to your deployment/remote server') do |host|
      ::Notifyor.configuration.ssh_host = host
    end

    opts.on('--ssh-port port', 'Provide the ssh port for the deployment/remote server') do |port|
      ::Notifyor.configuration.ssh_port = port
    end

    opts.on('--ssh-user user', 'Provide the ssh user for the deployment/remote server') do |user|
      ::Notifyor.configuration.ssh_user = user
    end

    opts.on('--tunnel-port tunnel_port', 'Provide the ssh user for the deployment/remote server') do |tunnel_port|
      ::Notifyor.configuration.tunnel_port = tunnel_port
    end

    opts.on('--redis-port redis_port', 'Provide the ssh user for the deployment/remote server') do |redis_port|
      ::Notifyor.configuration.redis_port = redis_port
    end
  end.parse!
end