inst-jobs 0.13.6 → 0.13.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b63744bcf8a08c33dca7774529b4a20fb919771d
4
- data.tar.gz: 4c5a5a634d64817e7ac47bc01182228d2b0a3c93
3
+ metadata.gz: 527f11441928b3b0441c6472b38acf010b753efd
4
+ data.tar.gz: 3b267f6baafad78f71d62100689fefa5b9d836b9
5
5
  SHA512:
6
- metadata.gz: 217273201d1fd055e55c711e52d101051afd404b1b6dc75443901b4add9b03433e2c8e50bbaaa4d162defd321b7da911c5fafc9ba25fb2ac6541983f6070ec4e
7
- data.tar.gz: 76ad540b9e89b1c5e60265cb4c5aa18c463eb51810f4c965546da578005759ba09bfdeb429e92b8dd7b1d4aedab117489ba4a3c84e4fb24f1bbbfb8a1abf1b4e
6
+ metadata.gz: dbd8d1cfeaada7d63f0fedd65473a83697bee6e585c5b796fb8864925c1afde5c297f8fdee02c38a507d6752acfcffe20b7de82ef85d916cb0096af52cff14cc
7
+ data.tar.gz: eb5a1c4dc8c4cd96cbac3158fda68d19f5db202c54c49a71670d68e9ff1dc1396d7e5a050d713abc656e439377e9f53f78a69da353fbeb7c099729ee527b4652
@@ -85,7 +85,7 @@ module Delayed
85
85
  self.send("#{setting}=", config[setting.to_s]) if config.key?(setting.to_s)
86
86
  end
87
87
  parent_process.client_timeout = config['parent_process_client_timeout'] if config.key?('parent_process_client_timeout')
88
- parent_process = config['parent_process'] if config.key?('parent_process')
88
+ self.parent_process = config['parent_process'] if config.key?('parent_process')
89
89
  end
90
90
 
91
91
  def self.default_worker_config_name
@@ -1,3 +1,3 @@
1
1
  module Delayed
2
- VERSION = "0.13.6"
2
+ VERSION = "0.13.7"
3
3
  end
@@ -28,6 +28,12 @@ default:
28
28
  expect(described_class).to receive(:last_ditch_logfile=).with(true)
29
29
  described_class.apply_worker_config!('last_ditch_logfile' => true)
30
30
  end
31
+
32
+ it 'merges in parent_process overrides to default config' do
33
+ described_class.apply_worker_config!('parent_process' => { 'foo' => 'bar' })
34
+
35
+ expect(Delayed::Settings.parent_process).to include('foo' => 'bar')
36
+ end
31
37
  end
32
38
 
33
39
  describe '.parent_process_client_timeout=' do
@@ -1,100 +1,98 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- inst-jobs (0.13.4)
5
- after_transaction_commit (>= 1.0, < 3)
4
+ inst-jobs (0.12.3)
5
+ after_transaction_commit (~> 1.0)
6
6
  rails (>= 4.2)
7
7
  redis (> 3.0)
8
8
  redis-scripting (~> 1.0.1)
9
- rufus-scheduler (~> 3.4)
9
+ rufus-scheduler (~> 3.3.2)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actionmailer (4.2.9)
15
- actionpack (= 4.2.9)
16
- actionview (= 4.2.9)
17
- activejob (= 4.2.9)
14
+ actionmailer (4.2.8)
15
+ actionpack (= 4.2.8)
16
+ actionview (= 4.2.8)
17
+ activejob (= 4.2.8)
18
18
  mail (~> 2.5, >= 2.5.4)
19
19
  rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.9)
21
- actionview (= 4.2.9)
22
- activesupport (= 4.2.9)
20
+ actionpack (4.2.8)
21
+ actionview (= 4.2.8)
22
+ activesupport (= 4.2.8)
23
23
  rack (~> 1.6)
24
24
  rack-test (~> 0.6.2)
25
25
  rails-dom-testing (~> 1.0, >= 1.0.5)
26
26
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.9)
28
- activesupport (= 4.2.9)
27
+ actionview (4.2.8)
28
+ activesupport (= 4.2.8)
29
29
  builder (~> 3.1)
30
30
  erubis (~> 2.7.0)
31
31
  rails-dom-testing (~> 1.0, >= 1.0.5)
32
32
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (4.2.9)
34
- activesupport (= 4.2.9)
33
+ activejob (4.2.8)
34
+ activesupport (= 4.2.8)
35
35
  globalid (>= 0.3.0)
36
- activemodel (4.2.9)
37
- activesupport (= 4.2.9)
36
+ activemodel (4.2.8)
37
+ activesupport (= 4.2.8)
38
38
  builder (~> 3.1)
39
- activerecord (4.2.9)
40
- activemodel (= 4.2.9)
41
- activesupport (= 4.2.9)
39
+ activerecord (4.2.8)
40
+ activemodel (= 4.2.8)
41
+ activesupport (= 4.2.8)
42
42
  arel (~> 6.0)
43
- activesupport (4.2.9)
43
+ activesupport (4.2.8)
44
44
  i18n (~> 0.7)
45
45
  minitest (~> 5.1)
46
46
  thread_safe (~> 0.3, >= 0.3.4)
47
47
  tzinfo (~> 1.1)
48
- after_transaction_commit (1.1.2)
48
+ after_transaction_commit (1.1.1)
49
49
  activerecord (>= 4.0)
50
50
  arel (6.0.4)
51
- backports (3.8.0)
51
+ backports (3.7.0)
52
52
  builder (3.2.3)
53
- bump (0.5.4)
53
+ bump (0.5.3)
54
54
  byebug (9.0.6)
55
55
  coderay (1.1.1)
56
56
  concurrent-ruby (1.0.5)
57
- database_cleaner (1.6.1)
57
+ database_cleaner (1.3.0)
58
58
  diff-lcs (1.3)
59
59
  erubis (2.7.0)
60
- et-orbi (1.0.5)
61
- tzinfo
62
60
  globalid (0.4.0)
63
61
  activesupport (>= 4.2.0)
64
- i18n (0.8.6)
62
+ i18n (0.8.1)
65
63
  loofah (2.0.3)
66
64
  nokogiri (>= 1.5.9)
67
- mail (2.6.6)
65
+ mail (2.6.4)
68
66
  mime-types (>= 1.16, < 4)
69
67
  method_source (0.8.2)
70
68
  mime-types (3.1)
71
69
  mime-types-data (~> 3.2015)
72
70
  mime-types-data (3.2016.0521)
73
- mini_portile2 (2.2.0)
74
- minitest (5.10.3)
71
+ mini_portile2 (2.1.0)
72
+ minitest (5.10.1)
75
73
  multi_json (1.12.1)
76
- nokogiri (1.8.0)
77
- mini_portile2 (~> 2.2.0)
78
- pg (0.21.0)
74
+ nokogiri (1.7.1)
75
+ mini_portile2 (~> 2.1.0)
76
+ pg (0.20.0)
79
77
  pry (0.10.4)
80
78
  coderay (~> 1.1.0)
81
79
  method_source (~> 0.8.1)
82
80
  slop (~> 3.4)
83
- rack (1.6.8)
81
+ rack (1.6.5)
84
82
  rack-protection (1.5.3)
85
83
  rack
86
84
  rack-test (0.6.3)
87
85
  rack (>= 1.0)
88
- rails (4.2.9)
89
- actionmailer (= 4.2.9)
90
- actionpack (= 4.2.9)
91
- actionview (= 4.2.9)
92
- activejob (= 4.2.9)
93
- activemodel (= 4.2.9)
94
- activerecord (= 4.2.9)
95
- activesupport (= 4.2.9)
86
+ rails (4.2.8)
87
+ actionmailer (= 4.2.8)
88
+ actionpack (= 4.2.8)
89
+ actionview (= 4.2.8)
90
+ activejob (= 4.2.8)
91
+ activemodel (= 4.2.8)
92
+ activerecord (= 4.2.8)
93
+ activesupport (= 4.2.8)
96
94
  bundler (>= 1.3.0, < 2.0)
97
- railties (= 4.2.9)
95
+ railties (= 4.2.8)
98
96
  sprockets-rails
99
97
  rails-deprecated_sanitizer (1.0.3)
100
98
  activesupport (>= 4.2.0.alpha)
@@ -104,9 +102,9 @@ GEM
104
102
  rails-deprecated_sanitizer (>= 1.0.1)
105
103
  rails-html-sanitizer (1.0.3)
106
104
  loofah (~> 2.0)
107
- railties (4.2.9)
108
- actionpack (= 4.2.9)
109
- activesupport (= 4.2.9)
105
+ railties (4.2.8)
106
+ actionpack (= 4.2.8)
107
+ activesupport (= 4.2.8)
110
108
  rake (>= 0.8.7)
111
109
  thor (>= 0.18.1, < 2.0)
112
110
  rake (12.0.0)
@@ -126,8 +124,8 @@ GEM
126
124
  diff-lcs (>= 1.2.0, < 2.0)
127
125
  rspec-support (~> 3.4.0)
128
126
  rspec-support (3.4.1)
129
- rufus-scheduler (3.4.2)
130
- et-orbi (~> 1.0)
127
+ rufus-scheduler (3.3.4)
128
+ tzinfo
131
129
  sinatra (1.4.8)
132
130
  rack (~> 1.5)
133
131
  rack-protection (~> 1.4)
@@ -151,7 +149,7 @@ GEM
151
149
  activerecord (>= 3.2)
152
150
  thor (0.19.4)
153
151
  thread_safe (0.3.6)
154
- tilt (2.0.8)
152
+ tilt (2.0.7)
155
153
  timecop (0.7.1)
156
154
  tzinfo (1.2.3)
157
155
  thread_safe (~> 0.1)
@@ -161,10 +159,9 @@ PLATFORMS
161
159
  ruby
162
160
 
163
161
  DEPENDENCIES
164
- after_transaction_commit (< 2)
165
162
  bump
166
163
  byebug
167
- database_cleaner (= 1.6.1)
164
+ database_cleaner (= 1.3.0)
168
165
  inst-jobs!
169
166
  pg
170
167
  pry
@@ -179,4 +176,4 @@ DEPENDENCIES
179
176
  wwtd (~> 1.3.0)
180
177
 
181
178
  BUNDLED WITH
182
- 1.15.3
179
+ 1.14.6
@@ -1,115 +1,113 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- inst-jobs (0.13.4)
5
- after_transaction_commit (>= 1.0, < 3)
4
+ inst-jobs (0.12.3)
5
+ after_transaction_commit (~> 1.0)
6
6
  rails (>= 4.2)
7
7
  redis (> 3.0)
8
8
  redis-scripting (~> 1.0.1)
9
- rufus-scheduler (~> 3.4)
9
+ rufus-scheduler (~> 3.3.2)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- actioncable (5.0.5)
15
- actionpack (= 5.0.5)
14
+ actioncable (5.0.2)
15
+ actionpack (= 5.0.2)
16
16
  nio4r (>= 1.2, < 3.0)
17
17
  websocket-driver (~> 0.6.1)
18
- actionmailer (5.0.5)
19
- actionpack (= 5.0.5)
20
- actionview (= 5.0.5)
21
- activejob (= 5.0.5)
18
+ actionmailer (5.0.2)
19
+ actionpack (= 5.0.2)
20
+ actionview (= 5.0.2)
21
+ activejob (= 5.0.2)
22
22
  mail (~> 2.5, >= 2.5.4)
23
23
  rails-dom-testing (~> 2.0)
24
- actionpack (5.0.5)
25
- actionview (= 5.0.5)
26
- activesupport (= 5.0.5)
24
+ actionpack (5.0.2)
25
+ actionview (= 5.0.2)
26
+ activesupport (= 5.0.2)
27
27
  rack (~> 2.0)
28
28
  rack-test (~> 0.6.3)
29
29
  rails-dom-testing (~> 2.0)
30
30
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
- actionview (5.0.5)
32
- activesupport (= 5.0.5)
31
+ actionview (5.0.2)
32
+ activesupport (= 5.0.2)
33
33
  builder (~> 3.1)
34
34
  erubis (~> 2.7.0)
35
35
  rails-dom-testing (~> 2.0)
36
36
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
- activejob (5.0.5)
38
- activesupport (= 5.0.5)
37
+ activejob (5.0.2)
38
+ activesupport (= 5.0.2)
39
39
  globalid (>= 0.3.6)
40
- activemodel (5.0.5)
41
- activesupport (= 5.0.5)
42
- activerecord (5.0.5)
43
- activemodel (= 5.0.5)
44
- activesupport (= 5.0.5)
40
+ activemodel (5.0.2)
41
+ activesupport (= 5.0.2)
42
+ activerecord (5.0.2)
43
+ activemodel (= 5.0.2)
44
+ activesupport (= 5.0.2)
45
45
  arel (~> 7.0)
46
- activesupport (5.0.5)
46
+ activesupport (5.0.2)
47
47
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
48
  i18n (~> 0.7)
49
49
  minitest (~> 5.1)
50
50
  tzinfo (~> 1.1)
51
- after_transaction_commit (2.0.0)
52
- activerecord (>= 5.0)
51
+ after_transaction_commit (1.1.1)
52
+ activerecord (>= 4.0)
53
53
  arel (7.1.4)
54
- backports (3.8.0)
54
+ backports (3.7.0)
55
55
  builder (3.2.3)
56
- bump (0.5.4)
56
+ bump (0.5.3)
57
57
  byebug (9.0.6)
58
58
  coderay (1.1.1)
59
59
  concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
60
+ database_cleaner (1.3.0)
61
61
  diff-lcs (1.3)
62
62
  erubis (2.7.0)
63
- et-orbi (1.0.5)
64
- tzinfo
65
63
  globalid (0.4.0)
66
64
  activesupport (>= 4.2.0)
67
- i18n (0.8.6)
65
+ i18n (0.8.1)
68
66
  loofah (2.0.3)
69
67
  nokogiri (>= 1.5.9)
70
- mail (2.6.6)
68
+ mail (2.6.4)
71
69
  mime-types (>= 1.16, < 4)
72
70
  method_source (0.8.2)
73
71
  mime-types (3.1)
74
72
  mime-types-data (~> 3.2015)
75
73
  mime-types-data (3.2016.0521)
76
- mini_portile2 (2.2.0)
77
- minitest (5.10.3)
74
+ mini_portile2 (2.1.0)
75
+ minitest (5.10.1)
78
76
  multi_json (1.12.1)
79
77
  mustermann (1.0.0.beta2)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- pg (0.21.0)
78
+ nio4r (2.0.0)
79
+ nokogiri (1.7.1)
80
+ mini_portile2 (~> 2.1.0)
81
+ pg (0.20.0)
84
82
  pry (0.10.4)
85
83
  coderay (~> 1.1.0)
86
84
  method_source (~> 0.8.1)
87
85
  slop (~> 3.4)
88
- rack (2.0.3)
86
+ rack (2.0.1)
89
87
  rack-protection (2.0.0.beta2)
90
88
  rack
91
89
  rack-test (0.6.3)
92
90
  rack (>= 1.0)
93
- rails (5.0.5)
94
- actioncable (= 5.0.5)
95
- actionmailer (= 5.0.5)
96
- actionpack (= 5.0.5)
97
- actionview (= 5.0.5)
98
- activejob (= 5.0.5)
99
- activemodel (= 5.0.5)
100
- activerecord (= 5.0.5)
101
- activesupport (= 5.0.5)
102
- bundler (>= 1.3.0)
103
- railties (= 5.0.5)
91
+ rails (5.0.2)
92
+ actioncable (= 5.0.2)
93
+ actionmailer (= 5.0.2)
94
+ actionpack (= 5.0.2)
95
+ actionview (= 5.0.2)
96
+ activejob (= 5.0.2)
97
+ activemodel (= 5.0.2)
98
+ activerecord (= 5.0.2)
99
+ activesupport (= 5.0.2)
100
+ bundler (>= 1.3.0, < 2.0)
101
+ railties (= 5.0.2)
104
102
  sprockets-rails (>= 2.0.0)
105
- rails-dom-testing (2.0.3)
106
- activesupport (>= 4.2.0)
107
- nokogiri (>= 1.6)
103
+ rails-dom-testing (2.0.2)
104
+ activesupport (>= 4.2.0, < 6.0)
105
+ nokogiri (~> 1.6)
108
106
  rails-html-sanitizer (1.0.3)
109
107
  loofah (~> 2.0)
110
- railties (5.0.5)
111
- actionpack (= 5.0.5)
112
- activesupport (= 5.0.5)
108
+ railties (5.0.2)
109
+ actionpack (= 5.0.2)
110
+ activesupport (= 5.0.2)
113
111
  method_source
114
112
  rake (>= 0.8.7)
115
113
  thor (>= 0.18.1, < 2.0)
@@ -130,8 +128,8 @@ GEM
130
128
  diff-lcs (>= 1.2.0, < 2.0)
131
129
  rspec-support (~> 3.4.0)
132
130
  rspec-support (3.4.1)
133
- rufus-scheduler (3.4.2)
134
- et-orbi (~> 1.0)
131
+ rufus-scheduler (3.3.4)
132
+ tzinfo
135
133
  sinatra (2.0.0.beta2)
136
134
  mustermann (= 1.0.0.beta2)
137
135
  rack (~> 2.0)
@@ -153,9 +151,11 @@ GEM
153
151
  actionpack (>= 4.0)
154
152
  activesupport (>= 4.0)
155
153
  sprockets (>= 3.0.0)
154
+ test_after_commit (0.4.1)
155
+ activerecord (>= 3.2)
156
156
  thor (0.19.4)
157
157
  thread_safe (0.3.6)
158
- tilt (2.0.8)
158
+ tilt (2.0.7)
159
159
  timecop (0.7.1)
160
160
  tzinfo (1.2.3)
161
161
  thread_safe (~> 0.1)
@@ -170,7 +170,7 @@ PLATFORMS
170
170
  DEPENDENCIES
171
171
  bump
172
172
  byebug
173
- database_cleaner (= 1.6.1)
173
+ database_cleaner (= 1.3.0)
174
174
  inst-jobs!
175
175
  pg
176
176
  pry
@@ -180,8 +180,9 @@ DEPENDENCIES
180
180
  rspec (= 3.4.0)
181
181
  sinatra (= 2.0.0.beta2)
182
182
  sinatra-contrib (= 2.0.0.beta2)
183
+ test_after_commit (= 0.4.1)
183
184
  timecop (= 0.7.1)
184
185
  wwtd (~> 1.3.0)
185
186
 
186
187
  BUNDLED WITH
187
- 1.15.3
188
+ 1.14.6
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inst-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.6
4
+ version: 0.13.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Luetke
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-08-28 00:00:00.000000000 Z
12
+ date: 2017-08-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: after_transaction_commit
@@ -343,7 +343,6 @@ files:
343
343
  - spec/gemfiles/50.gemfile
344
344
  - spec/gemfiles/50.gemfile.lock
345
345
  - spec/gemfiles/51.gemfile
346
- - spec/gemfiles/51.gemfile.lock
347
346
  - spec/migrate/20140924140513_add_story_table.rb
348
347
  - spec/redis_job_spec.rb
349
348
  - spec/sample_jobs.rb
@@ -394,7 +393,6 @@ test_files:
394
393
  - spec/gemfiles/50.gemfile
395
394
  - spec/gemfiles/50.gemfile.lock
396
395
  - spec/gemfiles/51.gemfile
397
- - spec/gemfiles/51.gemfile.lock
398
396
  - spec/migrate/20140924140513_add_story_table.rb
399
397
  - spec/redis_job_spec.rb
400
398
  - spec/sample_jobs.rb
@@ -1,187 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- inst-jobs (0.13.3)
5
- after_transaction_commit (~> 1.0)
6
- rails (>= 4.2)
7
- redis (> 3.0)
8
- redis-scripting (~> 1.0.1)
9
- rufus-scheduler (~> 3.4)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actioncable (5.1.1)
15
- actionpack (= 5.1.1)
16
- nio4r (~> 2.0)
17
- websocket-driver (~> 0.6.1)
18
- actionmailer (5.1.1)
19
- actionpack (= 5.1.1)
20
- actionview (= 5.1.1)
21
- activejob (= 5.1.1)
22
- mail (~> 2.5, >= 2.5.4)
23
- rails-dom-testing (~> 2.0)
24
- actionpack (5.1.1)
25
- actionview (= 5.1.1)
26
- activesupport (= 5.1.1)
27
- rack (~> 2.0)
28
- rack-test (~> 0.6.3)
29
- rails-dom-testing (~> 2.0)
30
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
- actionview (5.1.1)
32
- activesupport (= 5.1.1)
33
- builder (~> 3.1)
34
- erubi (~> 1.4)
35
- rails-dom-testing (~> 2.0)
36
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
- activejob (5.1.1)
38
- activesupport (= 5.1.1)
39
- globalid (>= 0.3.6)
40
- activemodel (5.1.1)
41
- activesupport (= 5.1.1)
42
- activerecord (5.1.1)
43
- activemodel (= 5.1.1)
44
- activesupport (= 5.1.1)
45
- arel (~> 8.0)
46
- activesupport (5.1.1)
47
- concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (~> 0.7)
49
- minitest (~> 5.1)
50
- tzinfo (~> 1.1)
51
- after_transaction_commit (1.1.2)
52
- activerecord (>= 4.0)
53
- arel (8.0.0)
54
- backports (3.7.0)
55
- builder (3.2.3)
56
- bump (0.5.3)
57
- byebug (9.0.6)
58
- coderay (1.1.1)
59
- concurrent-ruby (1.0.5)
60
- database_cleaner (1.6.1)
61
- diff-lcs (1.3)
62
- erubi (1.6.0)
63
- et-orbi (1.0.3)
64
- tzinfo
65
- globalid (0.4.0)
66
- activesupport (>= 4.2.0)
67
- i18n (0.8.4)
68
- loofah (2.0.3)
69
- nokogiri (>= 1.5.9)
70
- mail (2.6.6)
71
- mime-types (>= 1.16, < 4)
72
- method_source (0.8.2)
73
- mime-types (3.1)
74
- mime-types-data (~> 3.2015)
75
- mime-types-data (3.2016.0521)
76
- mini_portile2 (2.2.0)
77
- minitest (5.10.2)
78
- multi_json (1.12.1)
79
- mustermann (1.0.0.beta2)
80
- nio4r (2.1.0)
81
- nokogiri (1.8.0)
82
- mini_portile2 (~> 2.2.0)
83
- pg (0.21.0)
84
- pry (0.10.4)
85
- coderay (~> 1.1.0)
86
- method_source (~> 0.8.1)
87
- slop (~> 3.4)
88
- rack (2.0.3)
89
- rack-protection (2.0.0.beta2)
90
- rack
91
- rack-test (0.6.3)
92
- rack (>= 1.0)
93
- rails (5.1.1)
94
- actioncable (= 5.1.1)
95
- actionmailer (= 5.1.1)
96
- actionpack (= 5.1.1)
97
- actionview (= 5.1.1)
98
- activejob (= 5.1.1)
99
- activemodel (= 5.1.1)
100
- activerecord (= 5.1.1)
101
- activesupport (= 5.1.1)
102
- bundler (>= 1.3.0, < 2.0)
103
- railties (= 5.1.1)
104
- sprockets-rails (>= 2.0.0)
105
- rails-dom-testing (2.0.3)
106
- activesupport (>= 4.2.0)
107
- nokogiri (>= 1.6)
108
- rails-html-sanitizer (1.0.3)
109
- loofah (~> 2.0)
110
- railties (5.1.1)
111
- actionpack (= 5.1.1)
112
- activesupport (= 5.1.1)
113
- method_source
114
- rake (>= 0.8.7)
115
- thor (>= 0.18.1, < 2.0)
116
- rake (12.0.0)
117
- redis (3.3.3)
118
- redis-scripting (1.0.1)
119
- redis (>= 3.0)
120
- rspec (3.4.0)
121
- rspec-core (~> 3.4.0)
122
- rspec-expectations (~> 3.4.0)
123
- rspec-mocks (~> 3.4.0)
124
- rspec-core (3.4.4)
125
- rspec-support (~> 3.4.0)
126
- rspec-expectations (3.4.0)
127
- diff-lcs (>= 1.2.0, < 2.0)
128
- rspec-support (~> 3.4.0)
129
- rspec-mocks (3.4.1)
130
- diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.4.0)
132
- rspec-support (3.4.1)
133
- rufus-scheduler (3.4.0)
134
- et-orbi (~> 1.0)
135
- sinatra (2.0.0.beta2)
136
- mustermann (= 1.0.0.beta2)
137
- rack (~> 2.0)
138
- rack-protection (= 2.0.0.beta2)
139
- tilt (~> 2.0)
140
- sinatra-contrib (2.0.0.beta2)
141
- backports (>= 2.0)
142
- multi_json
143
- mustermann (= 1.0.0.beta2)
144
- rack-protection (= 2.0.0.beta2)
145
- rack-test
146
- sinatra (= 2.0.0.beta2)
147
- tilt (>= 1.3, < 3)
148
- slop (3.6.0)
149
- sprockets (3.7.1)
150
- concurrent-ruby (~> 1.0)
151
- rack (> 1, < 3)
152
- sprockets-rails (3.2.0)
153
- actionpack (>= 4.0)
154
- activesupport (>= 4.0)
155
- sprockets (>= 3.0.0)
156
- thor (0.19.4)
157
- thread_safe (0.3.6)
158
- tilt (2.0.7)
159
- timecop (0.7.1)
160
- tzinfo (1.2.3)
161
- thread_safe (~> 0.1)
162
- websocket-driver (0.6.5)
163
- websocket-extensions (>= 0.1.0)
164
- websocket-extensions (0.1.2)
165
- wwtd (1.3.0)
166
-
167
- PLATFORMS
168
- ruby
169
-
170
- DEPENDENCIES
171
- bump
172
- byebug
173
- database_cleaner (= 1.6.1)
174
- inst-jobs!
175
- pg
176
- pry
177
- rack-test
178
- rails (~> 5.1.0)
179
- rake
180
- rspec (= 3.4.0)
181
- sinatra (= 2.0.0.beta2)
182
- sinatra-contrib (= 2.0.0.beta2)
183
- timecop (= 0.7.1)
184
- wwtd (~> 1.3.0)
185
-
186
- BUNDLED WITH
187
- 1.14.6