inst-jobs 0.15.22 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/db/migrate/20101216224513_create_delayed_jobs.rb +2 -0
- data/db/migrate/20110208031356_add_delayed_jobs_tag.rb +2 -0
- data/db/migrate/20110426161613_add_delayed_jobs_max_attempts.rb +2 -0
- data/db/migrate/20110516225834_add_delayed_jobs_strand.rb +2 -0
- data/db/migrate/20110531144916_cleanup_delayed_jobs_indexes.rb +2 -0
- data/db/migrate/20110610213249_optimize_delayed_jobs.rb +2 -0
- data/db/migrate/20110831210257_add_delayed_jobs_next_in_strand.rb +2 -0
- data/db/migrate/20120510004759_delayed_jobs_delete_trigger_lock_for_update.rb +2 -0
- data/db/migrate/20120531150712_drop_psql_jobs_pop_fn.rb +2 -0
- data/db/migrate/20120607164022_delayed_jobs_use_advisory_locks.rb +2 -0
- data/db/migrate/20120607181141_index_jobs_on_locked_by.rb +2 -0
- data/db/migrate/20120608191051_add_jobs_run_at_index.rb +2 -0
- data/db/migrate/20120927184213_change_delayed_jobs_handler_to_text.rb +2 -0
- data/db/migrate/20140505215131_add_failed_jobs_original_job_id.rb +2 -0
- data/db/migrate/20140505215510_copy_failed_jobs_original_id.rb +2 -0
- data/db/migrate/20140505223637_drop_failed_jobs_original_id.rb +2 -0
- data/db/migrate/20140512213941_add_source_to_jobs.rb +2 -0
- data/db/migrate/20150807133223_add_max_concurrent_to_jobs.rb +2 -0
- data/db/migrate/20151123210429_add_expires_at_to_jobs.rb +2 -0
- data/db/migrate/20151210162949_improve_max_concurrent.rb +2 -0
- data/db/migrate/20161206323555_add_back_default_string_limits_jobs.rb +2 -0
- data/db/migrate/20181217155351_speed_up_max_concurrent_triggers.rb +2 -0
- data/db/migrate/20190726154743_make_critical_columns_not_null.rb +2 -0
- data/db/migrate/20200330230722_add_id_to_get_delayed_jobs_index.rb +2 -0
- data/db/migrate/20200824222232_speed_up_max_concurrent_delete_trigger.rb +97 -0
- data/db/migrate/20200825011002_add_strand_order_override.rb +128 -0
- data/lib/delayed/backend/active_record.rb +9 -5
- data/lib/delayed/backend/base.rb +34 -20
- data/lib/delayed/backend/redis/functions.rb +2 -0
- data/lib/delayed/backend/redis/job.rb +2 -0
- data/lib/delayed/batch.rb +5 -3
- data/lib/delayed/cli.rb +2 -0
- data/lib/delayed/core_ext/kernel.rb +9 -0
- data/lib/delayed/daemon.rb +2 -0
- data/lib/delayed/engine.rb +2 -0
- data/lib/delayed/job_tracking.rb +2 -0
- data/lib/delayed/lifecycle.rb +2 -0
- data/lib/delayed/log_tailer.rb +2 -0
- data/lib/delayed/logging.rb +2 -0
- data/lib/delayed/message_sending.rb +90 -106
- data/lib/delayed/performable_method.rb +34 -6
- data/lib/delayed/periodic.rb +6 -4
- data/lib/delayed/plugin.rb +2 -0
- data/lib/delayed/pool.rb +2 -0
- data/lib/delayed/server.rb +2 -0
- data/lib/delayed/server/helpers.rb +2 -0
- data/lib/delayed/settings.rb +2 -0
- data/lib/delayed/testing.rb +2 -0
- data/lib/delayed/version.rb +3 -1
- data/lib/delayed/work_queue/in_process.rb +2 -0
- data/lib/delayed/work_queue/parent_process.rb +2 -0
- data/lib/delayed/work_queue/parent_process/client.rb +2 -0
- data/lib/delayed/work_queue/parent_process/server.rb +2 -0
- data/lib/delayed/worker.rb +2 -0
- data/lib/delayed/worker/consul_health_check.rb +3 -1
- data/lib/delayed/worker/health_check.rb +2 -0
- data/lib/delayed/worker/null_health_check.rb +2 -0
- data/lib/delayed/worker/process_helper.rb +2 -0
- data/lib/delayed/yaml_extensions.rb +2 -0
- data/lib/delayed_job.rb +4 -0
- data/lib/inst-jobs.rb +2 -0
- data/spec/active_record_job_spec.rb +4 -6
- data/spec/delayed/cli_spec.rb +2 -0
- data/spec/delayed/daemon_spec.rb +2 -0
- data/spec/delayed/message_sending_spec.rb +101 -0
- data/spec/delayed/server_spec.rb +2 -4
- data/spec/delayed/settings_spec.rb +2 -0
- data/spec/delayed/work_queue/in_process_spec.rb +2 -4
- data/spec/delayed/work_queue/parent_process/client_spec.rb +2 -4
- data/spec/delayed/work_queue/parent_process/server_spec.rb +2 -1
- data/spec/delayed/work_queue/parent_process_spec.rb +2 -1
- data/spec/delayed/worker/consul_health_check_spec.rb +3 -1
- data/spec/delayed/worker/health_check_spec.rb +2 -0
- data/spec/delayed/worker_spec.rb +2 -0
- data/spec/gemfiles/42.gemfile.lock +192 -0
- data/spec/gemfiles/50.gemfile.lock +197 -0
- data/spec/gemfiles/51.gemfile.lock +198 -0
- data/spec/gemfiles/52.gemfile.lock +206 -0
- data/spec/gemfiles/60.gemfile.lock +224 -0
- data/spec/migrate/20140924140513_add_story_table.rb +2 -0
- data/spec/redis_job_spec.rb +10 -12
- data/spec/sample_jobs.rb +2 -0
- data/spec/shared/delayed_batch.rb +17 -15
- data/spec/shared/delayed_method.rb +49 -204
- data/spec/shared/performable_method.rb +11 -9
- data/spec/shared/shared_backend.rb +27 -25
- data/spec/shared/testing.rb +7 -5
- data/spec/shared/worker.rb +15 -13
- data/spec/shared_jobs_specs.rb +2 -0
- data/spec/spec_helper.rb +12 -1
- metadata +36 -7
@@ -0,0 +1,197 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
inst-jobs (0.15.12)
|
5
|
+
activerecord (>= 4.2)
|
6
|
+
activesupport (>= 4.2)
|
7
|
+
after_transaction_commit (>= 1.0, < 3)
|
8
|
+
railties (>= 4.2)
|
9
|
+
redis (> 3.0)
|
10
|
+
redis-scripting (~> 1.0.1)
|
11
|
+
rufus-scheduler (~> 3.4, < 3.5)
|
12
|
+
|
13
|
+
GEM
|
14
|
+
remote: https://rubygems.org/
|
15
|
+
specs:
|
16
|
+
actioncable (5.0.5)
|
17
|
+
actionpack (= 5.0.5)
|
18
|
+
nio4r (>= 1.2, < 3.0)
|
19
|
+
websocket-driver (~> 0.6.1)
|
20
|
+
actionmailer (5.0.5)
|
21
|
+
actionpack (= 5.0.5)
|
22
|
+
actionview (= 5.0.5)
|
23
|
+
activejob (= 5.0.5)
|
24
|
+
mail (~> 2.5, >= 2.5.4)
|
25
|
+
rails-dom-testing (~> 2.0)
|
26
|
+
actionpack (5.0.5)
|
27
|
+
actionview (= 5.0.5)
|
28
|
+
activesupport (= 5.0.5)
|
29
|
+
rack (~> 2.0)
|
30
|
+
rack-test (~> 0.6.3)
|
31
|
+
rails-dom-testing (~> 2.0)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
+
actionview (5.0.5)
|
34
|
+
activesupport (= 5.0.5)
|
35
|
+
builder (~> 3.1)
|
36
|
+
erubis (~> 2.7.0)
|
37
|
+
rails-dom-testing (~> 2.0)
|
38
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
39
|
+
activejob (5.0.5)
|
40
|
+
activesupport (= 5.0.5)
|
41
|
+
globalid (>= 0.3.6)
|
42
|
+
activemodel (5.0.5)
|
43
|
+
activesupport (= 5.0.5)
|
44
|
+
activerecord (5.0.5)
|
45
|
+
activemodel (= 5.0.5)
|
46
|
+
activesupport (= 5.0.5)
|
47
|
+
arel (~> 7.0)
|
48
|
+
activesupport (5.0.5)
|
49
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
50
|
+
i18n (~> 0.7)
|
51
|
+
minitest (~> 5.1)
|
52
|
+
tzinfo (~> 1.1)
|
53
|
+
addressable (2.6.0)
|
54
|
+
public_suffix (>= 2.0.2, < 4.0)
|
55
|
+
after_transaction_commit (2.0.0)
|
56
|
+
activerecord (>= 5.0)
|
57
|
+
arel (7.1.4)
|
58
|
+
backports (3.8.0)
|
59
|
+
builder (3.2.3)
|
60
|
+
bump (0.5.4)
|
61
|
+
byebug (9.0.6)
|
62
|
+
coderay (1.1.1)
|
63
|
+
concurrent-ruby (1.0.5)
|
64
|
+
database_cleaner (1.6.1)
|
65
|
+
diff-lcs (1.3)
|
66
|
+
erubis (2.7.0)
|
67
|
+
et-orbi (1.2.1)
|
68
|
+
tzinfo
|
69
|
+
globalid (0.4.0)
|
70
|
+
activesupport (>= 4.2.0)
|
71
|
+
httpclient (2.8.3)
|
72
|
+
i18n (0.8.6)
|
73
|
+
imperium (0.5.1)
|
74
|
+
addressable (~> 2.5)
|
75
|
+
httpclient (~> 2.8)
|
76
|
+
loofah (2.0.3)
|
77
|
+
nokogiri (>= 1.5.9)
|
78
|
+
mail (2.6.6)
|
79
|
+
mime-types (>= 1.16, < 4)
|
80
|
+
method_source (0.8.2)
|
81
|
+
mime-types (3.1)
|
82
|
+
mime-types-data (~> 3.2015)
|
83
|
+
mime-types-data (3.2016.0521)
|
84
|
+
mini_portile2 (2.4.0)
|
85
|
+
minitest (5.10.3)
|
86
|
+
multi_json (1.12.1)
|
87
|
+
mustermann (1.0.0.beta2)
|
88
|
+
nio4r (2.1.0)
|
89
|
+
nokogiri (1.10.4)
|
90
|
+
mini_portile2 (~> 2.4.0)
|
91
|
+
pg (0.21.0)
|
92
|
+
pry (0.10.4)
|
93
|
+
coderay (~> 1.1.0)
|
94
|
+
method_source (~> 0.8.1)
|
95
|
+
slop (~> 3.4)
|
96
|
+
public_suffix (3.1.1)
|
97
|
+
rack (2.0.3)
|
98
|
+
rack-protection (2.0.0.beta2)
|
99
|
+
rack
|
100
|
+
rack-test (0.6.3)
|
101
|
+
rack (>= 1.0)
|
102
|
+
rails (5.0.5)
|
103
|
+
actioncable (= 5.0.5)
|
104
|
+
actionmailer (= 5.0.5)
|
105
|
+
actionpack (= 5.0.5)
|
106
|
+
actionview (= 5.0.5)
|
107
|
+
activejob (= 5.0.5)
|
108
|
+
activemodel (= 5.0.5)
|
109
|
+
activerecord (= 5.0.5)
|
110
|
+
activesupport (= 5.0.5)
|
111
|
+
bundler (>= 1.3.0)
|
112
|
+
railties (= 5.0.5)
|
113
|
+
sprockets-rails (>= 2.0.0)
|
114
|
+
rails-dom-testing (2.0.3)
|
115
|
+
activesupport (>= 4.2.0)
|
116
|
+
nokogiri (>= 1.6)
|
117
|
+
rails-html-sanitizer (1.0.3)
|
118
|
+
loofah (~> 2.0)
|
119
|
+
railties (5.0.5)
|
120
|
+
actionpack (= 5.0.5)
|
121
|
+
activesupport (= 5.0.5)
|
122
|
+
method_source
|
123
|
+
rake (>= 0.8.7)
|
124
|
+
thor (>= 0.18.1, < 2.0)
|
125
|
+
rake (12.0.0)
|
126
|
+
redis (4.1.2)
|
127
|
+
redis-scripting (1.0.1)
|
128
|
+
redis (>= 3.0)
|
129
|
+
rspec (3.8.0)
|
130
|
+
rspec-core (~> 3.8.0)
|
131
|
+
rspec-expectations (~> 3.8.0)
|
132
|
+
rspec-mocks (~> 3.8.0)
|
133
|
+
rspec-core (3.8.2)
|
134
|
+
rspec-support (~> 3.8.0)
|
135
|
+
rspec-expectations (3.8.4)
|
136
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
137
|
+
rspec-support (~> 3.8.0)
|
138
|
+
rspec-mocks (3.8.1)
|
139
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
140
|
+
rspec-support (~> 3.8.0)
|
141
|
+
rspec-support (3.8.2)
|
142
|
+
rufus-scheduler (3.4.2)
|
143
|
+
et-orbi (~> 1.0)
|
144
|
+
sinatra (2.0.0.beta2)
|
145
|
+
mustermann (= 1.0.0.beta2)
|
146
|
+
rack (~> 2.0)
|
147
|
+
rack-protection (= 2.0.0.beta2)
|
148
|
+
tilt (~> 2.0)
|
149
|
+
sinatra-contrib (2.0.0.beta2)
|
150
|
+
backports (>= 2.0)
|
151
|
+
multi_json
|
152
|
+
mustermann (= 1.0.0.beta2)
|
153
|
+
rack-protection (= 2.0.0.beta2)
|
154
|
+
rack-test
|
155
|
+
sinatra (= 2.0.0.beta2)
|
156
|
+
tilt (>= 1.3, < 3)
|
157
|
+
slop (3.6.0)
|
158
|
+
sprockets (3.7.1)
|
159
|
+
concurrent-ruby (~> 1.0)
|
160
|
+
rack (> 1, < 3)
|
161
|
+
sprockets-rails (3.2.0)
|
162
|
+
actionpack (>= 4.0)
|
163
|
+
activesupport (>= 4.0)
|
164
|
+
sprockets (>= 3.0.0)
|
165
|
+
thor (0.19.4)
|
166
|
+
thread_safe (0.3.6)
|
167
|
+
tilt (2.0.8)
|
168
|
+
timecop (0.7.1)
|
169
|
+
tzinfo (1.2.3)
|
170
|
+
thread_safe (~> 0.1)
|
171
|
+
websocket-driver (0.6.5)
|
172
|
+
websocket-extensions (>= 0.1.0)
|
173
|
+
websocket-extensions (0.1.2)
|
174
|
+
wwtd (1.3.0)
|
175
|
+
|
176
|
+
PLATFORMS
|
177
|
+
ruby
|
178
|
+
|
179
|
+
DEPENDENCIES
|
180
|
+
bump
|
181
|
+
byebug
|
182
|
+
database_cleaner (= 1.6.1)
|
183
|
+
imperium (>= 0.2.3)
|
184
|
+
inst-jobs!
|
185
|
+
pg (< 1.0)
|
186
|
+
pry
|
187
|
+
rack-test
|
188
|
+
rails (~> 5.0.0)
|
189
|
+
rake
|
190
|
+
rspec (~> 3.8.0)
|
191
|
+
sinatra (= 2.0.0.beta2)
|
192
|
+
sinatra-contrib (= 2.0.0.beta2)
|
193
|
+
timecop (= 0.7.1)
|
194
|
+
wwtd (~> 1.3.0)
|
195
|
+
|
196
|
+
BUNDLED WITH
|
197
|
+
1.17.2
|
@@ -0,0 +1,198 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
inst-jobs (1.0.0)
|
5
|
+
activerecord (>= 4.2)
|
6
|
+
activesupport (>= 4.2)
|
7
|
+
after_transaction_commit (>= 1.0, < 3)
|
8
|
+
fugit (~> 1.3)
|
9
|
+
railties (>= 4.2)
|
10
|
+
redis (> 3.0)
|
11
|
+
redis-scripting (~> 1.0.1)
|
12
|
+
|
13
|
+
GEM
|
14
|
+
remote: https://rubygems.org/
|
15
|
+
specs:
|
16
|
+
actioncable (5.1.6)
|
17
|
+
actionpack (= 5.1.6)
|
18
|
+
nio4r (~> 2.0)
|
19
|
+
websocket-driver (~> 0.6.1)
|
20
|
+
actionmailer (5.1.6)
|
21
|
+
actionpack (= 5.1.6)
|
22
|
+
actionview (= 5.1.6)
|
23
|
+
activejob (= 5.1.6)
|
24
|
+
mail (~> 2.5, >= 2.5.4)
|
25
|
+
rails-dom-testing (~> 2.0)
|
26
|
+
actionpack (5.1.6)
|
27
|
+
actionview (= 5.1.6)
|
28
|
+
activesupport (= 5.1.6)
|
29
|
+
rack (~> 2.0)
|
30
|
+
rack-test (>= 0.6.3)
|
31
|
+
rails-dom-testing (~> 2.0)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
+
actionview (5.1.6)
|
34
|
+
activesupport (= 5.1.6)
|
35
|
+
builder (~> 3.1)
|
36
|
+
erubi (~> 1.4)
|
37
|
+
rails-dom-testing (~> 2.0)
|
38
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
39
|
+
activejob (5.1.6)
|
40
|
+
activesupport (= 5.1.6)
|
41
|
+
globalid (>= 0.3.6)
|
42
|
+
activemodel (5.1.6)
|
43
|
+
activesupport (= 5.1.6)
|
44
|
+
activerecord (5.1.6)
|
45
|
+
activemodel (= 5.1.6)
|
46
|
+
activesupport (= 5.1.6)
|
47
|
+
arel (~> 8.0)
|
48
|
+
activesupport (5.1.6)
|
49
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
50
|
+
i18n (>= 0.7, < 2)
|
51
|
+
minitest (~> 5.1)
|
52
|
+
tzinfo (~> 1.1)
|
53
|
+
addressable (2.7.0)
|
54
|
+
public_suffix (>= 2.0.2, < 5.0)
|
55
|
+
after_transaction_commit (2.1.0)
|
56
|
+
activerecord (>= 5.0)
|
57
|
+
arel (8.0.0)
|
58
|
+
backports (3.11.3)
|
59
|
+
builder (3.2.3)
|
60
|
+
bump (0.6.1)
|
61
|
+
byebug (10.0.2)
|
62
|
+
coderay (1.1.2)
|
63
|
+
concurrent-ruby (1.0.5)
|
64
|
+
crass (1.0.4)
|
65
|
+
database_cleaner (1.6.1)
|
66
|
+
diff-lcs (1.3)
|
67
|
+
erubi (1.7.1)
|
68
|
+
et-orbi (1.2.4)
|
69
|
+
tzinfo
|
70
|
+
fugit (1.3.9)
|
71
|
+
et-orbi (~> 1.1, >= 1.1.8)
|
72
|
+
raabro (~> 1.3)
|
73
|
+
globalid (0.4.1)
|
74
|
+
activesupport (>= 4.2.0)
|
75
|
+
httpclient (2.8.3)
|
76
|
+
i18n (1.1.0)
|
77
|
+
concurrent-ruby (~> 1.0)
|
78
|
+
imperium (0.5.2)
|
79
|
+
addressable (~> 2.5)
|
80
|
+
httpclient (~> 2.8)
|
81
|
+
loofah (2.2.2)
|
82
|
+
crass (~> 1.0.2)
|
83
|
+
nokogiri (>= 1.5.9)
|
84
|
+
mail (2.7.0)
|
85
|
+
mini_mime (>= 0.1.1)
|
86
|
+
method_source (0.9.0)
|
87
|
+
mini_mime (1.0.1)
|
88
|
+
mini_portile2 (2.4.0)
|
89
|
+
minitest (5.11.3)
|
90
|
+
multi_json (1.13.1)
|
91
|
+
mustermann (1.0.0.beta2)
|
92
|
+
nio4r (2.3.1)
|
93
|
+
nokogiri (1.10.4)
|
94
|
+
mini_portile2 (~> 2.4.0)
|
95
|
+
pg (0.21.0)
|
96
|
+
pry (0.11.3)
|
97
|
+
coderay (~> 1.1.0)
|
98
|
+
method_source (~> 0.9.0)
|
99
|
+
public_suffix (4.0.3)
|
100
|
+
raabro (1.4.0)
|
101
|
+
rack (2.0.5)
|
102
|
+
rack-protection (2.0.0.beta2)
|
103
|
+
rack
|
104
|
+
rack-test (1.1.0)
|
105
|
+
rack (>= 1.0, < 3)
|
106
|
+
rails (5.1.6)
|
107
|
+
actioncable (= 5.1.6)
|
108
|
+
actionmailer (= 5.1.6)
|
109
|
+
actionpack (= 5.1.6)
|
110
|
+
actionview (= 5.1.6)
|
111
|
+
activejob (= 5.1.6)
|
112
|
+
activemodel (= 5.1.6)
|
113
|
+
activerecord (= 5.1.6)
|
114
|
+
activesupport (= 5.1.6)
|
115
|
+
bundler (>= 1.3.0)
|
116
|
+
railties (= 5.1.6)
|
117
|
+
sprockets-rails (>= 2.0.0)
|
118
|
+
rails-dom-testing (2.0.3)
|
119
|
+
activesupport (>= 4.2.0)
|
120
|
+
nokogiri (>= 1.6)
|
121
|
+
rails-html-sanitizer (1.0.4)
|
122
|
+
loofah (~> 2.2, >= 2.2.2)
|
123
|
+
railties (5.1.6)
|
124
|
+
actionpack (= 5.1.6)
|
125
|
+
activesupport (= 5.1.6)
|
126
|
+
method_source
|
127
|
+
rake (>= 0.8.7)
|
128
|
+
thor (>= 0.18.1, < 2.0)
|
129
|
+
rake (12.3.1)
|
130
|
+
redis (4.2.2)
|
131
|
+
redis-scripting (1.0.1)
|
132
|
+
redis (>= 3.0)
|
133
|
+
rspec (3.8.0)
|
134
|
+
rspec-core (~> 3.8.0)
|
135
|
+
rspec-expectations (~> 3.8.0)
|
136
|
+
rspec-mocks (~> 3.8.0)
|
137
|
+
rspec-core (3.8.2)
|
138
|
+
rspec-support (~> 3.8.0)
|
139
|
+
rspec-expectations (3.8.4)
|
140
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
141
|
+
rspec-support (~> 3.8.0)
|
142
|
+
rspec-mocks (3.8.1)
|
143
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
144
|
+
rspec-support (~> 3.8.0)
|
145
|
+
rspec-support (3.8.2)
|
146
|
+
sinatra (2.0.0.beta2)
|
147
|
+
mustermann (= 1.0.0.beta2)
|
148
|
+
rack (~> 2.0)
|
149
|
+
rack-protection (= 2.0.0.beta2)
|
150
|
+
tilt (~> 2.0)
|
151
|
+
sinatra-contrib (2.0.0.beta2)
|
152
|
+
backports (>= 2.0)
|
153
|
+
multi_json
|
154
|
+
mustermann (= 1.0.0.beta2)
|
155
|
+
rack-protection (= 2.0.0.beta2)
|
156
|
+
rack-test
|
157
|
+
sinatra (= 2.0.0.beta2)
|
158
|
+
tilt (>= 1.3, < 3)
|
159
|
+
sprockets (3.7.2)
|
160
|
+
concurrent-ruby (~> 1.0)
|
161
|
+
rack (> 1, < 3)
|
162
|
+
sprockets-rails (3.2.1)
|
163
|
+
actionpack (>= 4.0)
|
164
|
+
activesupport (>= 4.0)
|
165
|
+
sprockets (>= 3.0.0)
|
166
|
+
thor (0.20.0)
|
167
|
+
thread_safe (0.3.6)
|
168
|
+
tilt (2.0.8)
|
169
|
+
timecop (0.7.1)
|
170
|
+
tzinfo (1.2.5)
|
171
|
+
thread_safe (~> 0.1)
|
172
|
+
websocket-driver (0.6.5)
|
173
|
+
websocket-extensions (>= 0.1.0)
|
174
|
+
websocket-extensions (0.1.3)
|
175
|
+
wwtd (1.4.1)
|
176
|
+
|
177
|
+
PLATFORMS
|
178
|
+
ruby
|
179
|
+
|
180
|
+
DEPENDENCIES
|
181
|
+
bump
|
182
|
+
byebug
|
183
|
+
database_cleaner (= 1.6.1)
|
184
|
+
imperium (>= 0.5.2)
|
185
|
+
inst-jobs!
|
186
|
+
pg (< 1.0)
|
187
|
+
pry
|
188
|
+
rack-test
|
189
|
+
rails (~> 5.1.0)
|
190
|
+
rake
|
191
|
+
rspec (~> 3.8.0)
|
192
|
+
sinatra (= 2.0.0.beta2)
|
193
|
+
sinatra-contrib (= 2.0.0.beta2)
|
194
|
+
timecop (= 0.7.1)
|
195
|
+
wwtd (~> 1.4.0)
|
196
|
+
|
197
|
+
BUNDLED WITH
|
198
|
+
1.17.3
|
@@ -0,0 +1,206 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
inst-jobs (1.0.0)
|
5
|
+
activerecord (>= 4.2)
|
6
|
+
activesupport (>= 4.2)
|
7
|
+
after_transaction_commit (>= 1.0, < 3)
|
8
|
+
fugit (~> 1.3)
|
9
|
+
railties (>= 4.2)
|
10
|
+
redis (> 3.0)
|
11
|
+
redis-scripting (~> 1.0.1)
|
12
|
+
|
13
|
+
GEM
|
14
|
+
remote: https://rubygems.org/
|
15
|
+
specs:
|
16
|
+
actioncable (5.2.3)
|
17
|
+
actionpack (= 5.2.3)
|
18
|
+
nio4r (~> 2.0)
|
19
|
+
websocket-driver (>= 0.6.1)
|
20
|
+
actionmailer (5.2.3)
|
21
|
+
actionpack (= 5.2.3)
|
22
|
+
actionview (= 5.2.3)
|
23
|
+
activejob (= 5.2.3)
|
24
|
+
mail (~> 2.5, >= 2.5.4)
|
25
|
+
rails-dom-testing (~> 2.0)
|
26
|
+
actionpack (5.2.3)
|
27
|
+
actionview (= 5.2.3)
|
28
|
+
activesupport (= 5.2.3)
|
29
|
+
rack (~> 2.0)
|
30
|
+
rack-test (>= 0.6.3)
|
31
|
+
rails-dom-testing (~> 2.0)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
+
actionview (5.2.3)
|
34
|
+
activesupport (= 5.2.3)
|
35
|
+
builder (~> 3.1)
|
36
|
+
erubi (~> 1.4)
|
37
|
+
rails-dom-testing (~> 2.0)
|
38
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
39
|
+
activejob (5.2.3)
|
40
|
+
activesupport (= 5.2.3)
|
41
|
+
globalid (>= 0.3.6)
|
42
|
+
activemodel (5.2.3)
|
43
|
+
activesupport (= 5.2.3)
|
44
|
+
activerecord (5.2.3)
|
45
|
+
activemodel (= 5.2.3)
|
46
|
+
activesupport (= 5.2.3)
|
47
|
+
arel (>= 9.0)
|
48
|
+
activestorage (5.2.3)
|
49
|
+
actionpack (= 5.2.3)
|
50
|
+
activerecord (= 5.2.3)
|
51
|
+
marcel (~> 0.3.1)
|
52
|
+
activesupport (5.2.3)
|
53
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
54
|
+
i18n (>= 0.7, < 2)
|
55
|
+
minitest (~> 5.1)
|
56
|
+
tzinfo (~> 1.1)
|
57
|
+
addressable (2.7.0)
|
58
|
+
public_suffix (>= 2.0.2, < 5.0)
|
59
|
+
after_transaction_commit (2.1.0)
|
60
|
+
activerecord (>= 5.0)
|
61
|
+
arel (9.0.0)
|
62
|
+
backports (3.15.0)
|
63
|
+
builder (3.2.3)
|
64
|
+
bump (0.8.0)
|
65
|
+
byebug (11.0.1)
|
66
|
+
coderay (1.1.2)
|
67
|
+
concurrent-ruby (1.1.5)
|
68
|
+
crass (1.0.4)
|
69
|
+
database_cleaner (1.6.1)
|
70
|
+
diff-lcs (1.3)
|
71
|
+
erubi (1.8.0)
|
72
|
+
et-orbi (1.2.4)
|
73
|
+
tzinfo
|
74
|
+
fugit (1.3.9)
|
75
|
+
et-orbi (~> 1.1, >= 1.1.8)
|
76
|
+
raabro (~> 1.3)
|
77
|
+
globalid (0.4.2)
|
78
|
+
activesupport (>= 4.2.0)
|
79
|
+
httpclient (2.8.3)
|
80
|
+
i18n (1.6.0)
|
81
|
+
concurrent-ruby (~> 1.0)
|
82
|
+
imperium (0.5.2)
|
83
|
+
addressable (~> 2.5)
|
84
|
+
httpclient (~> 2.8)
|
85
|
+
loofah (2.2.3)
|
86
|
+
crass (~> 1.0.2)
|
87
|
+
nokogiri (>= 1.5.9)
|
88
|
+
mail (2.7.1)
|
89
|
+
mini_mime (>= 0.1.1)
|
90
|
+
marcel (0.3.3)
|
91
|
+
mimemagic (~> 0.3.2)
|
92
|
+
method_source (0.9.2)
|
93
|
+
mimemagic (0.3.3)
|
94
|
+
mini_mime (1.0.2)
|
95
|
+
mini_portile2 (2.4.0)
|
96
|
+
minitest (5.11.3)
|
97
|
+
multi_json (1.13.1)
|
98
|
+
mustermann (1.0.0.beta2)
|
99
|
+
nio4r (2.4.0)
|
100
|
+
nokogiri (1.10.4)
|
101
|
+
mini_portile2 (~> 2.4.0)
|
102
|
+
pg (0.21.0)
|
103
|
+
pry (0.12.2)
|
104
|
+
coderay (~> 1.1.0)
|
105
|
+
method_source (~> 0.9.0)
|
106
|
+
public_suffix (4.0.6)
|
107
|
+
raabro (1.4.0)
|
108
|
+
rack (2.0.7)
|
109
|
+
rack-protection (2.0.0.beta2)
|
110
|
+
rack
|
111
|
+
rack-test (1.1.0)
|
112
|
+
rack (>= 1.0, < 3)
|
113
|
+
rails (5.2.3)
|
114
|
+
actioncable (= 5.2.3)
|
115
|
+
actionmailer (= 5.2.3)
|
116
|
+
actionpack (= 5.2.3)
|
117
|
+
actionview (= 5.2.3)
|
118
|
+
activejob (= 5.2.3)
|
119
|
+
activemodel (= 5.2.3)
|
120
|
+
activerecord (= 5.2.3)
|
121
|
+
activestorage (= 5.2.3)
|
122
|
+
activesupport (= 5.2.3)
|
123
|
+
bundler (>= 1.3.0)
|
124
|
+
railties (= 5.2.3)
|
125
|
+
sprockets-rails (>= 2.0.0)
|
126
|
+
rails-dom-testing (2.0.3)
|
127
|
+
activesupport (>= 4.2.0)
|
128
|
+
nokogiri (>= 1.6)
|
129
|
+
rails-html-sanitizer (1.2.0)
|
130
|
+
loofah (~> 2.2, >= 2.2.2)
|
131
|
+
railties (5.2.3)
|
132
|
+
actionpack (= 5.2.3)
|
133
|
+
activesupport (= 5.2.3)
|
134
|
+
method_source
|
135
|
+
rake (>= 0.8.7)
|
136
|
+
thor (>= 0.19.0, < 2.0)
|
137
|
+
rake (12.3.3)
|
138
|
+
redis (4.2.2)
|
139
|
+
redis-scripting (1.0.1)
|
140
|
+
redis (>= 3.0)
|
141
|
+
rspec (3.8.0)
|
142
|
+
rspec-core (~> 3.8.0)
|
143
|
+
rspec-expectations (~> 3.8.0)
|
144
|
+
rspec-mocks (~> 3.8.0)
|
145
|
+
rspec-core (3.8.2)
|
146
|
+
rspec-support (~> 3.8.0)
|
147
|
+
rspec-expectations (3.8.4)
|
148
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
149
|
+
rspec-support (~> 3.8.0)
|
150
|
+
rspec-mocks (3.8.1)
|
151
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
152
|
+
rspec-support (~> 3.8.0)
|
153
|
+
rspec-support (3.8.2)
|
154
|
+
sinatra (2.0.0.beta2)
|
155
|
+
mustermann (= 1.0.0.beta2)
|
156
|
+
rack (~> 2.0)
|
157
|
+
rack-protection (= 2.0.0.beta2)
|
158
|
+
tilt (~> 2.0)
|
159
|
+
sinatra-contrib (2.0.0.beta2)
|
160
|
+
backports (>= 2.0)
|
161
|
+
multi_json
|
162
|
+
mustermann (= 1.0.0.beta2)
|
163
|
+
rack-protection (= 2.0.0.beta2)
|
164
|
+
rack-test
|
165
|
+
sinatra (= 2.0.0.beta2)
|
166
|
+
tilt (>= 1.3, < 3)
|
167
|
+
sprockets (3.7.2)
|
168
|
+
concurrent-ruby (~> 1.0)
|
169
|
+
rack (> 1, < 3)
|
170
|
+
sprockets-rails (3.2.1)
|
171
|
+
actionpack (>= 4.0)
|
172
|
+
activesupport (>= 4.0)
|
173
|
+
sprockets (>= 3.0.0)
|
174
|
+
thor (0.20.3)
|
175
|
+
thread_safe (0.3.6)
|
176
|
+
tilt (2.0.9)
|
177
|
+
timecop (0.7.1)
|
178
|
+
tzinfo (1.2.5)
|
179
|
+
thread_safe (~> 0.1)
|
180
|
+
websocket-driver (0.7.1)
|
181
|
+
websocket-extensions (>= 0.1.0)
|
182
|
+
websocket-extensions (0.1.4)
|
183
|
+
wwtd (1.4.1)
|
184
|
+
|
185
|
+
PLATFORMS
|
186
|
+
ruby
|
187
|
+
|
188
|
+
DEPENDENCIES
|
189
|
+
bump
|
190
|
+
byebug
|
191
|
+
database_cleaner (= 1.6.1)
|
192
|
+
imperium (>= 0.5.2)
|
193
|
+
inst-jobs!
|
194
|
+
pg (< 1.0)
|
195
|
+
pry
|
196
|
+
rack-test
|
197
|
+
rails (~> 5.2.0)
|
198
|
+
rake
|
199
|
+
rspec (~> 3.8.0)
|
200
|
+
sinatra (= 2.0.0.beta2)
|
201
|
+
sinatra-contrib (= 2.0.0.beta2)
|
202
|
+
timecop (= 0.7.1)
|
203
|
+
wwtd (~> 1.4.0)
|
204
|
+
|
205
|
+
BUNDLED WITH
|
206
|
+
1.17.3
|