supervisor 0.0.95 → 0.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/config.yml +17 -26
  2. data/lib/supervisor/version.rb +1 -1
  3. metadata +1 -1
data/config.yml CHANGED
@@ -1,37 +1,28 @@
1
1
  #SUPERVISOR CONFIGURATION
2
2
 
3
- #SUPERVISOR APP CONFIG (application)
4
- # - If running in app mode (i.e. outside of a Rails app), configure settings here
5
3
  #DELAYED JOB WORKER MACHINES (hosts)
6
4
  # - Configure SSH connection info for the seperates hosts that are working delayed jobs
7
5
  # - To add additional host connections, simply add another nested entry below
8
- # - The DelayedJobMonitor::Worker module will establish SSH connections to each
6
+ # - The Supervisor::Server module will establish SSH connections to each
9
7
  # one to monitor, start, and stop delayed_job workers.
10
- #DELAYED JOB STORE (database)
8
+ #DELAYED JOB DATABASE (database)
11
9
  # - Configure an ActiveRecord connection to the database that is hosting the delay_jobs database
12
- # - Only 1 DB connection is supported at this time.
10
+ # - Only 1 postgresql or sqlite database connection is supported at this time.
13
11
 
14
12
  application:
15
- name: #Your production Rails app "nickname". Used to parse Rails path, log paths, etc
16
- email: #email upon failures,changes,etc
13
+ name: # used to parse Rails path, log paths, etc (optional)
14
+ email: # email upon failures,changes,etc (optional, not yet supp.)
17
15
  hosts:
18
16
  -
19
- name: # 'nickname' of host
20
- rails_path: # path of the Rails app on host machine, assumes '/var/www/RAILS_APP' by default
21
- host: # domain name of host for SSH connection
22
- username: # SSH Username
23
- password: # SSH Password
24
- -
25
- name: # 'nickname' of host
26
- rails_path: # path of the Rails app on host machine, assumes '/var/www/RAILS_APP' by default
27
- host: # domain name of host for SSH connection
28
- username: # SSH Username
29
- password: # SSH Password
30
- database:
31
- host:
32
- port:
33
- adapter:
34
- database:
35
- username:
36
- password:
37
- template:
17
+ name: # 'nickname' of host
18
+ rails_path: # path of the Rails app on host machine, assumes '/var/www/RAILS_APP' by default
19
+ host: # domain name of host for SSH connection
20
+ username: # SSH Username
21
+ password: # SSH Password
22
+ database:
23
+ host: # FQDN or IP Address of database server
24
+ port: # port
25
+ adapter: # 'postgresql' or 'sqlite'
26
+ database: # name of the database, just like in a Rails database.yml
27
+ username: # username
28
+ password: # password
@@ -1,3 +1,3 @@
1
1
  module Supervisor
2
- VERSION = "0.0.95"
2
+ VERSION = "0.0.96"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: supervisor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.95
4
+ version: 0.0.96
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: