inst-jobs 2.1.2 → 2.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/delayed/backend/base.rb +4 -0
- data/lib/delayed/periodic.rb +8 -5
- data/lib/delayed/version.rb +1 -1
- data/spec/delayed/periodic_spec.rb +2 -0
- metadata +7 -17
- data/spec/gemfiles/42.gemfile.lock +0 -192
- data/spec/gemfiles/50.gemfile.lock +0 -197
- data/spec/gemfiles/51.gemfile.lock +0 -198
- data/spec/gemfiles/52.gemfile.lock +0 -206
- data/spec/gemfiles/60.gemfile.lock +0 -224
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c31ed6d846425c9bf022bb8c744681019cbf0f0192d4e0ee7f0a5d7dc44a65c
|
4
|
+
data.tar.gz: 4a5b940ba8bd6770209d93e20ccc217d4ab5915bcd1a5791de70b076e7cecf97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07377763c26979774add4b3445aa72ebc2cbff6aabe595e1157c883a90dea48407bc8ecb87f5532265178a96b27548caaf5ce13a0789c469272980bc864a2882
|
7
|
+
data.tar.gz: 7ddd291e18be337ae1d858d016af92cc255c111e5141eafca8cee598fcdae9563a74983ba6b98daeb50c1fe599490dd9c962e1c722d5dcea5083bf16a619641d
|
data/lib/delayed/backend/base.rb
CHANGED
@@ -87,6 +87,10 @@ module Delayed
|
|
87
87
|
batches[batch_enqueue_args] << kwargs
|
88
88
|
return true
|
89
89
|
else
|
90
|
+
if kwargs[:on_conflict].present?
|
91
|
+
Delayed::Logging.logger.warn("[DELAYED_JOB] WARNING: providing 'on_conflict' as an option to a non-singleton job will have no effect. Discarding.")
|
92
|
+
kwargs.delete(:on_conflict)
|
93
|
+
end
|
90
94
|
job = self.create(**kwargs)
|
91
95
|
end
|
92
96
|
|
data/lib/delayed/periodic.rb
CHANGED
@@ -53,15 +53,18 @@ class Periodic
|
|
53
53
|
end
|
54
54
|
|
55
55
|
def enqueue_args
|
56
|
+
# yes, checking for whether it is actually the boolean literal false,
|
57
|
+
# which means the consuming code really does not want this job to be
|
58
|
+
# a singleton at all.
|
59
|
+
non_singleton_periodic_job = @job_args[:singleton] == false
|
56
60
|
inferred_args = {
|
57
61
|
max_attempts: 1,
|
58
62
|
run_at: @cron.next_time(Delayed::Periodic.now).utc.to_time,
|
59
|
-
singleton: (
|
60
|
-
# yes, checking for whether it is actually the boolean literal false,
|
61
|
-
# which means the consuming code really does not want this job to be
|
62
|
-
# a singleton at all.
|
63
|
-
on_conflict: :patient
|
63
|
+
singleton: (non_singleton_periodic_job ? nil : tag)
|
64
64
|
}
|
65
|
+
unless non_singleton_periodic_job
|
66
|
+
inferred_args[:on_conflict] = :patient
|
67
|
+
end
|
65
68
|
@job_args.merge(inferred_args)
|
66
69
|
end
|
67
70
|
|
data/lib/delayed/version.rb
CHANGED
@@ -14,6 +14,7 @@ RSpec.describe Delayed::Periodic do
|
|
14
14
|
ensure
|
15
15
|
Delayed::Periodic.scheduled = prev_sched
|
16
16
|
Delayed::Periodic.overrides = prev_ovr
|
17
|
+
Delayed::Job.delete_all
|
17
18
|
end
|
18
19
|
|
19
20
|
describe ".cron" do
|
@@ -34,6 +35,7 @@ RSpec.describe Delayed::Periodic do
|
|
34
35
|
instance = Delayed::Periodic.scheduled[job_name]
|
35
36
|
expect(instance).to_not be_nil
|
36
37
|
expect(instance.enqueue_args[:singleton]).to be_nil
|
38
|
+
Delayed::Periodic.perform_audit!
|
37
39
|
end
|
38
40
|
end
|
39
41
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inst-jobs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Luetke
|
8
8
|
- Brian Palmer
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-12-
|
12
|
+
date: 2020-12-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|
@@ -325,7 +325,7 @@ dependencies:
|
|
325
325
|
- - "~>"
|
326
326
|
- !ruby/object:Gem::Version
|
327
327
|
version: 1.4.0
|
328
|
-
description:
|
328
|
+
description:
|
329
329
|
email:
|
330
330
|
- brianp@instructure.com
|
331
331
|
executables:
|
@@ -423,15 +423,10 @@ files:
|
|
423
423
|
- spec/delayed/worker/health_check_spec.rb
|
424
424
|
- spec/delayed/worker_spec.rb
|
425
425
|
- spec/gemfiles/42.gemfile
|
426
|
-
- spec/gemfiles/42.gemfile.lock
|
427
426
|
- spec/gemfiles/50.gemfile
|
428
|
-
- spec/gemfiles/50.gemfile.lock
|
429
427
|
- spec/gemfiles/51.gemfile
|
430
|
-
- spec/gemfiles/51.gemfile.lock
|
431
428
|
- spec/gemfiles/52.gemfile
|
432
|
-
- spec/gemfiles/52.gemfile.lock
|
433
429
|
- spec/gemfiles/60.gemfile
|
434
|
-
- spec/gemfiles/60.gemfile.lock
|
435
430
|
- spec/migrate/20140924140513_add_story_table.rb
|
436
431
|
- spec/redis_job_spec.rb
|
437
432
|
- spec/sample_jobs.rb
|
@@ -446,7 +441,7 @@ files:
|
|
446
441
|
homepage: https://github.com/instructure/inst-jobs
|
447
442
|
licenses: []
|
448
443
|
metadata: {}
|
449
|
-
post_install_message:
|
444
|
+
post_install_message:
|
450
445
|
rdoc_options: []
|
451
446
|
require_paths:
|
452
447
|
- lib
|
@@ -461,23 +456,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
461
456
|
- !ruby/object:Gem::Version
|
462
457
|
version: '0'
|
463
458
|
requirements: []
|
464
|
-
rubygems_version: 3.
|
465
|
-
signing_key:
|
459
|
+
rubygems_version: 3.0.3
|
460
|
+
signing_key:
|
466
461
|
specification_version: 4
|
467
462
|
summary: Instructure-maintained fork of delayed_job
|
468
463
|
test_files:
|
469
464
|
- spec/sample_jobs.rb
|
470
465
|
- spec/spec_helper.rb
|
471
466
|
- spec/redis_job_spec.rb
|
472
|
-
- spec/gemfiles/51.gemfile.lock
|
473
|
-
- spec/gemfiles/60.gemfile.lock
|
474
|
-
- spec/gemfiles/42.gemfile.lock
|
475
|
-
- spec/gemfiles/50.gemfile.lock
|
476
467
|
- spec/gemfiles/60.gemfile
|
477
468
|
- spec/gemfiles/42.gemfile
|
478
469
|
- spec/gemfiles/52.gemfile
|
479
470
|
- spec/gemfiles/50.gemfile
|
480
|
-
- spec/gemfiles/52.gemfile.lock
|
481
471
|
- spec/gemfiles/51.gemfile
|
482
472
|
- spec/shared_jobs_specs.rb
|
483
473
|
- spec/shared/performable_method.rb
|
@@ -1,192 +0,0 @@
|
|
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
|
-
actionmailer (4.2.9)
|
17
|
-
actionpack (= 4.2.9)
|
18
|
-
actionview (= 4.2.9)
|
19
|
-
activejob (= 4.2.9)
|
20
|
-
mail (~> 2.5, >= 2.5.4)
|
21
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
22
|
-
actionpack (4.2.9)
|
23
|
-
actionview (= 4.2.9)
|
24
|
-
activesupport (= 4.2.9)
|
25
|
-
rack (~> 1.6)
|
26
|
-
rack-test (~> 0.6.2)
|
27
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
28
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
29
|
-
actionview (4.2.9)
|
30
|
-
activesupport (= 4.2.9)
|
31
|
-
builder (~> 3.1)
|
32
|
-
erubis (~> 2.7.0)
|
33
|
-
rails-dom-testing (~> 1.0, >= 1.0.5)
|
34
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
35
|
-
activejob (4.2.9)
|
36
|
-
activesupport (= 4.2.9)
|
37
|
-
globalid (>= 0.3.0)
|
38
|
-
activemodel (4.2.9)
|
39
|
-
activesupport (= 4.2.9)
|
40
|
-
builder (~> 3.1)
|
41
|
-
activerecord (4.2.9)
|
42
|
-
activemodel (= 4.2.9)
|
43
|
-
activesupport (= 4.2.9)
|
44
|
-
arel (~> 6.0)
|
45
|
-
activesupport (4.2.9)
|
46
|
-
i18n (~> 0.7)
|
47
|
-
minitest (~> 5.1)
|
48
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
49
|
-
tzinfo (~> 1.1)
|
50
|
-
addressable (2.5.2)
|
51
|
-
public_suffix (>= 2.0.2, < 4.0)
|
52
|
-
after_transaction_commit (1.1.2)
|
53
|
-
activerecord (>= 4.0)
|
54
|
-
arel (6.0.4)
|
55
|
-
backports (3.8.0)
|
56
|
-
builder (3.2.3)
|
57
|
-
bump (0.5.4)
|
58
|
-
byebug (9.0.6)
|
59
|
-
coderay (1.1.1)
|
60
|
-
concurrent-ruby (1.0.5)
|
61
|
-
database_cleaner (1.6.1)
|
62
|
-
diff-lcs (1.3)
|
63
|
-
erubis (2.7.0)
|
64
|
-
et-orbi (1.2.1)
|
65
|
-
tzinfo
|
66
|
-
globalid (0.4.0)
|
67
|
-
activesupport (>= 4.2.0)
|
68
|
-
httpclient (2.8.3)
|
69
|
-
i18n (0.8.6)
|
70
|
-
imperium (0.3.0)
|
71
|
-
addressable (~> 2.5.0)
|
72
|
-
httpclient (~> 2.8)
|
73
|
-
loofah (2.0.3)
|
74
|
-
nokogiri (>= 1.5.9)
|
75
|
-
mail (2.6.6)
|
76
|
-
mime-types (>= 1.16, < 4)
|
77
|
-
method_source (0.8.2)
|
78
|
-
mime-types (3.1)
|
79
|
-
mime-types-data (~> 3.2015)
|
80
|
-
mime-types-data (3.2016.0521)
|
81
|
-
mini_portile2 (2.4.0)
|
82
|
-
minitest (5.10.3)
|
83
|
-
multi_json (1.12.1)
|
84
|
-
nokogiri (1.10.4)
|
85
|
-
mini_portile2 (~> 2.4.0)
|
86
|
-
pg (0.21.0)
|
87
|
-
pry (0.10.4)
|
88
|
-
coderay (~> 1.1.0)
|
89
|
-
method_source (~> 0.8.1)
|
90
|
-
slop (~> 3.4)
|
91
|
-
public_suffix (3.0.2)
|
92
|
-
rack (1.6.8)
|
93
|
-
rack-protection (1.5.3)
|
94
|
-
rack
|
95
|
-
rack-test (0.6.3)
|
96
|
-
rack (>= 1.0)
|
97
|
-
rails (4.2.9)
|
98
|
-
actionmailer (= 4.2.9)
|
99
|
-
actionpack (= 4.2.9)
|
100
|
-
actionview (= 4.2.9)
|
101
|
-
activejob (= 4.2.9)
|
102
|
-
activemodel (= 4.2.9)
|
103
|
-
activerecord (= 4.2.9)
|
104
|
-
activesupport (= 4.2.9)
|
105
|
-
bundler (>= 1.3.0, < 2.0)
|
106
|
-
railties (= 4.2.9)
|
107
|
-
sprockets-rails
|
108
|
-
rails-deprecated_sanitizer (1.0.3)
|
109
|
-
activesupport (>= 4.2.0.alpha)
|
110
|
-
rails-dom-testing (1.0.8)
|
111
|
-
activesupport (>= 4.2.0.beta, < 5.0)
|
112
|
-
nokogiri (~> 1.6)
|
113
|
-
rails-deprecated_sanitizer (>= 1.0.1)
|
114
|
-
rails-html-sanitizer (1.0.3)
|
115
|
-
loofah (~> 2.0)
|
116
|
-
railties (4.2.9)
|
117
|
-
actionpack (= 4.2.9)
|
118
|
-
activesupport (= 4.2.9)
|
119
|
-
rake (>= 0.8.7)
|
120
|
-
thor (>= 0.18.1, < 2.0)
|
121
|
-
rake (12.0.0)
|
122
|
-
redis (4.1.2)
|
123
|
-
redis-scripting (1.0.1)
|
124
|
-
redis (>= 3.0)
|
125
|
-
rspec (3.8.0)
|
126
|
-
rspec-core (~> 3.8.0)
|
127
|
-
rspec-expectations (~> 3.8.0)
|
128
|
-
rspec-mocks (~> 3.8.0)
|
129
|
-
rspec-core (3.8.2)
|
130
|
-
rspec-support (~> 3.8.0)
|
131
|
-
rspec-expectations (3.8.4)
|
132
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
133
|
-
rspec-support (~> 3.8.0)
|
134
|
-
rspec-mocks (3.8.1)
|
135
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
136
|
-
rspec-support (~> 3.8.0)
|
137
|
-
rspec-support (3.8.2)
|
138
|
-
rufus-scheduler (3.4.2)
|
139
|
-
et-orbi (~> 1.0)
|
140
|
-
sinatra (1.4.8)
|
141
|
-
rack (~> 1.5)
|
142
|
-
rack-protection (~> 1.4)
|
143
|
-
tilt (>= 1.3, < 3)
|
144
|
-
sinatra-contrib (1.4.7)
|
145
|
-
backports (>= 2.0)
|
146
|
-
multi_json
|
147
|
-
rack-protection
|
148
|
-
rack-test
|
149
|
-
sinatra (~> 1.4.0)
|
150
|
-
tilt (>= 1.3, < 3)
|
151
|
-
slop (3.6.0)
|
152
|
-
sprockets (3.7.1)
|
153
|
-
concurrent-ruby (~> 1.0)
|
154
|
-
rack (> 1, < 3)
|
155
|
-
sprockets-rails (3.2.0)
|
156
|
-
actionpack (>= 4.0)
|
157
|
-
activesupport (>= 4.0)
|
158
|
-
sprockets (>= 3.0.0)
|
159
|
-
test_after_commit (0.4.1)
|
160
|
-
activerecord (>= 3.2)
|
161
|
-
thor (0.19.4)
|
162
|
-
thread_safe (0.3.6)
|
163
|
-
tilt (2.0.8)
|
164
|
-
timecop (0.7.1)
|
165
|
-
tzinfo (1.2.3)
|
166
|
-
thread_safe (~> 0.1)
|
167
|
-
wwtd (1.3.0)
|
168
|
-
|
169
|
-
PLATFORMS
|
170
|
-
ruby
|
171
|
-
|
172
|
-
DEPENDENCIES
|
173
|
-
after_transaction_commit (< 2)
|
174
|
-
bump
|
175
|
-
byebug
|
176
|
-
database_cleaner (= 1.6.1)
|
177
|
-
imperium (>= 0.2.3)
|
178
|
-
inst-jobs!
|
179
|
-
pg (< 1.0)
|
180
|
-
pry
|
181
|
-
rack-test
|
182
|
-
rails (~> 4.2.5)
|
183
|
-
rake
|
184
|
-
rspec (~> 3.8.0)
|
185
|
-
sinatra
|
186
|
-
sinatra-contrib
|
187
|
-
test_after_commit (= 0.4.1)
|
188
|
-
timecop (= 0.7.1)
|
189
|
-
wwtd (~> 1.3.0)
|
190
|
-
|
191
|
-
BUNDLED WITH
|
192
|
-
1.17.2
|
@@ -1,197 +0,0 @@
|
|
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
|
@@ -1,198 +0,0 @@
|
|
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
|
@@ -1,206 +0,0 @@
|
|
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
|
@@ -1,224 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ../..
|
3
|
-
specs:
|
4
|
-
inst-jobs (1.0.1)
|
5
|
-
activerecord (>= 4.2)
|
6
|
-
activesupport (>= 4.2)
|
7
|
-
after_transaction_commit (>= 1.0, < 3)
|
8
|
-
debug_inspector (~> 0.0.3)
|
9
|
-
fugit (~> 1.3)
|
10
|
-
railties (>= 4.2)
|
11
|
-
redis (> 3.0)
|
12
|
-
redis-scripting (~> 1.0.1)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
actioncable (6.0.2)
|
18
|
-
actionpack (= 6.0.2)
|
19
|
-
nio4r (~> 2.0)
|
20
|
-
websocket-driver (>= 0.6.1)
|
21
|
-
actionmailbox (6.0.2)
|
22
|
-
actionpack (= 6.0.2)
|
23
|
-
activejob (= 6.0.2)
|
24
|
-
activerecord (= 6.0.2)
|
25
|
-
activestorage (= 6.0.2)
|
26
|
-
activesupport (= 6.0.2)
|
27
|
-
mail (>= 2.7.1)
|
28
|
-
actionmailer (6.0.2)
|
29
|
-
actionpack (= 6.0.2)
|
30
|
-
actionview (= 6.0.2)
|
31
|
-
activejob (= 6.0.2)
|
32
|
-
mail (~> 2.5, >= 2.5.4)
|
33
|
-
rails-dom-testing (~> 2.0)
|
34
|
-
actionpack (6.0.2)
|
35
|
-
actionview (= 6.0.2)
|
36
|
-
activesupport (= 6.0.2)
|
37
|
-
rack (~> 2.0)
|
38
|
-
rack-test (>= 0.6.3)
|
39
|
-
rails-dom-testing (~> 2.0)
|
40
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
41
|
-
actiontext (6.0.2)
|
42
|
-
actionpack (= 6.0.2)
|
43
|
-
activerecord (= 6.0.2)
|
44
|
-
activestorage (= 6.0.2)
|
45
|
-
activesupport (= 6.0.2)
|
46
|
-
nokogiri (>= 1.8.5)
|
47
|
-
actionview (6.0.2)
|
48
|
-
activesupport (= 6.0.2)
|
49
|
-
builder (~> 3.1)
|
50
|
-
erubi (~> 1.4)
|
51
|
-
rails-dom-testing (~> 2.0)
|
52
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
53
|
-
activejob (6.0.2)
|
54
|
-
activesupport (= 6.0.2)
|
55
|
-
globalid (>= 0.3.6)
|
56
|
-
activemodel (6.0.2)
|
57
|
-
activesupport (= 6.0.2)
|
58
|
-
activerecord (6.0.2)
|
59
|
-
activemodel (= 6.0.2)
|
60
|
-
activesupport (= 6.0.2)
|
61
|
-
activestorage (6.0.2)
|
62
|
-
actionpack (= 6.0.2)
|
63
|
-
activejob (= 6.0.2)
|
64
|
-
activerecord (= 6.0.2)
|
65
|
-
marcel (~> 0.3.1)
|
66
|
-
activesupport (6.0.2)
|
67
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
68
|
-
i18n (>= 0.7, < 2)
|
69
|
-
minitest (~> 5.1)
|
70
|
-
tzinfo (~> 1.1)
|
71
|
-
zeitwerk (~> 2.2)
|
72
|
-
addressable (2.7.0)
|
73
|
-
public_suffix (>= 2.0.2, < 5.0)
|
74
|
-
after_transaction_commit (2.2.1)
|
75
|
-
activerecord (>= 5.2)
|
76
|
-
backports (3.15.0)
|
77
|
-
builder (3.2.4)
|
78
|
-
bump (0.8.0)
|
79
|
-
byebug (11.0.1)
|
80
|
-
coderay (1.1.2)
|
81
|
-
concurrent-ruby (1.1.7)
|
82
|
-
crass (1.0.6)
|
83
|
-
database_cleaner (1.6.1)
|
84
|
-
debug_inspector (0.0.3)
|
85
|
-
diff-lcs (1.3)
|
86
|
-
erubi (1.9.0)
|
87
|
-
et-orbi (1.2.4)
|
88
|
-
tzinfo
|
89
|
-
fugit (1.4.0)
|
90
|
-
et-orbi (~> 1.1, >= 1.1.8)
|
91
|
-
raabro (~> 1.4)
|
92
|
-
globalid (0.4.2)
|
93
|
-
activesupport (>= 4.2.0)
|
94
|
-
httpclient (2.8.3)
|
95
|
-
i18n (1.8.5)
|
96
|
-
concurrent-ruby (~> 1.0)
|
97
|
-
imperium (0.5.2)
|
98
|
-
addressable (~> 2.5)
|
99
|
-
httpclient (~> 2.8)
|
100
|
-
loofah (2.7.0)
|
101
|
-
crass (~> 1.0.2)
|
102
|
-
nokogiri (>= 1.5.9)
|
103
|
-
mail (2.7.1)
|
104
|
-
mini_mime (>= 0.1.1)
|
105
|
-
marcel (0.3.3)
|
106
|
-
mimemagic (~> 0.3.2)
|
107
|
-
method_source (0.9.2)
|
108
|
-
mimemagic (0.3.5)
|
109
|
-
mini_mime (1.0.2)
|
110
|
-
mini_portile2 (2.4.0)
|
111
|
-
minitest (5.14.2)
|
112
|
-
multi_json (1.13.1)
|
113
|
-
mustermann (1.0.0.beta2)
|
114
|
-
nio4r (2.5.4)
|
115
|
-
nokogiri (1.10.10)
|
116
|
-
mini_portile2 (~> 2.4.0)
|
117
|
-
pg (0.21.0)
|
118
|
-
pry (0.12.2)
|
119
|
-
coderay (~> 1.1.0)
|
120
|
-
method_source (~> 0.9.0)
|
121
|
-
public_suffix (4.0.6)
|
122
|
-
raabro (1.4.0)
|
123
|
-
rack (2.0.7)
|
124
|
-
rack-protection (2.0.0.beta2)
|
125
|
-
rack
|
126
|
-
rack-test (1.1.0)
|
127
|
-
rack (>= 1.0, < 3)
|
128
|
-
rails (6.0.2)
|
129
|
-
actioncable (= 6.0.2)
|
130
|
-
actionmailbox (= 6.0.2)
|
131
|
-
actionmailer (= 6.0.2)
|
132
|
-
actionpack (= 6.0.2)
|
133
|
-
actiontext (= 6.0.2)
|
134
|
-
actionview (= 6.0.2)
|
135
|
-
activejob (= 6.0.2)
|
136
|
-
activemodel (= 6.0.2)
|
137
|
-
activerecord (= 6.0.2)
|
138
|
-
activestorage (= 6.0.2)
|
139
|
-
activesupport (= 6.0.2)
|
140
|
-
bundler (>= 1.3.0)
|
141
|
-
railties (= 6.0.2)
|
142
|
-
sprockets-rails (>= 2.0.0)
|
143
|
-
rails-dom-testing (2.0.3)
|
144
|
-
activesupport (>= 4.2.0)
|
145
|
-
nokogiri (>= 1.6)
|
146
|
-
rails-html-sanitizer (1.3.0)
|
147
|
-
loofah (~> 2.3)
|
148
|
-
railties (6.0.2)
|
149
|
-
actionpack (= 6.0.2)
|
150
|
-
activesupport (= 6.0.2)
|
151
|
-
method_source
|
152
|
-
rake (>= 0.8.7)
|
153
|
-
thor (>= 0.20.3, < 2.0)
|
154
|
-
rake (12.3.3)
|
155
|
-
redis (4.2.2)
|
156
|
-
redis-scripting (1.0.1)
|
157
|
-
redis (>= 3.0)
|
158
|
-
rspec (3.8.0)
|
159
|
-
rspec-core (~> 3.8.0)
|
160
|
-
rspec-expectations (~> 3.8.0)
|
161
|
-
rspec-mocks (~> 3.8.0)
|
162
|
-
rspec-core (3.8.2)
|
163
|
-
rspec-support (~> 3.8.0)
|
164
|
-
rspec-expectations (3.8.4)
|
165
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
166
|
-
rspec-support (~> 3.8.0)
|
167
|
-
rspec-mocks (3.8.1)
|
168
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
169
|
-
rspec-support (~> 3.8.0)
|
170
|
-
rspec-support (3.8.2)
|
171
|
-
sinatra (2.0.0.beta2)
|
172
|
-
mustermann (= 1.0.0.beta2)
|
173
|
-
rack (~> 2.0)
|
174
|
-
rack-protection (= 2.0.0.beta2)
|
175
|
-
tilt (~> 2.0)
|
176
|
-
sinatra-contrib (2.0.0.beta2)
|
177
|
-
backports (>= 2.0)
|
178
|
-
multi_json
|
179
|
-
mustermann (= 1.0.0.beta2)
|
180
|
-
rack-protection (= 2.0.0.beta2)
|
181
|
-
rack-test
|
182
|
-
sinatra (= 2.0.0.beta2)
|
183
|
-
tilt (>= 1.3, < 3)
|
184
|
-
sprockets (4.0.2)
|
185
|
-
concurrent-ruby (~> 1.0)
|
186
|
-
rack (> 1, < 3)
|
187
|
-
sprockets-rails (3.2.2)
|
188
|
-
actionpack (>= 4.0)
|
189
|
-
activesupport (>= 4.0)
|
190
|
-
sprockets (>= 3.0.0)
|
191
|
-
thor (1.0.1)
|
192
|
-
thread_safe (0.3.6)
|
193
|
-
tilt (2.0.9)
|
194
|
-
timecop (0.7.1)
|
195
|
-
tzinfo (1.2.7)
|
196
|
-
thread_safe (~> 0.1)
|
197
|
-
websocket-driver (0.7.3)
|
198
|
-
websocket-extensions (>= 0.1.0)
|
199
|
-
websocket-extensions (0.1.5)
|
200
|
-
wwtd (1.4.1)
|
201
|
-
zeitwerk (2.4.0)
|
202
|
-
|
203
|
-
PLATFORMS
|
204
|
-
ruby
|
205
|
-
|
206
|
-
DEPENDENCIES
|
207
|
-
bump
|
208
|
-
byebug
|
209
|
-
database_cleaner (= 1.6.1)
|
210
|
-
imperium (>= 0.5.2)
|
211
|
-
inst-jobs!
|
212
|
-
pg (< 1.0)
|
213
|
-
pry
|
214
|
-
rack-test
|
215
|
-
rails (~> 6.0.0)
|
216
|
-
rake
|
217
|
-
rspec (~> 3.8.0)
|
218
|
-
sinatra (= 2.0.0.beta2)
|
219
|
-
sinatra-contrib (= 2.0.0.beta2)
|
220
|
-
timecop (= 0.7.1)
|
221
|
-
wwtd (~> 1.4.0)
|
222
|
-
|
223
|
-
BUNDLED WITH
|
224
|
-
2.1.2
|