inst-jobs 0.15.17 → 0.15.22
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/active_record.rb +57 -35
- data/lib/delayed/periodic.rb +4 -1
- data/lib/delayed/settings.rb +5 -1
- data/lib/delayed/version.rb +1 -1
- data/lib/delayed/work_queue/parent_process/server.rb +1 -1
- data/lib/delayed/worker.rb +1 -1
- data/spec/delayed/worker_spec.rb +27 -0
- metadata +2 -12
- 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 -204
- data/spec/gemfiles/60.gemfile.lock +0 -220
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33b7f135ba67d0b2b056851cec2e95672ac03766fa48d614ef53fa0e25a04255
|
4
|
+
data.tar.gz: 29878f6688d376811085f7615c701ae2f7cf31cc3bf6462440823f4e91ccb271
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8695ff4bd7e9c10a5b1a393adc56d0be6cb1b45c668a8ba413bf91a59a8b1eb76633f0f8e3429ff15c6a0f03a9404e3e4f0d3bacd6f2cbd0ef3984ac5b0e0ad7
|
7
|
+
data.tar.gz: 63f911fce5ddf75e7565095c134ffa0a3808fc5bf2b8e86f62466092b32a127afa449cbb44007774c771838fd30222a957246cbb44e9b8b125b01c2a7e8f2fe0
|
@@ -27,42 +27,54 @@ module Delayed
|
|
27
27
|
|
28
28
|
# modified from ActiveRecord::Persistence.create and ActiveRecord::Persistence#_insert_record
|
29
29
|
job = new(attributes, &block)
|
30
|
-
|
31
|
-
|
30
|
+
job.single_step_create
|
31
|
+
end
|
32
|
+
end
|
32
33
|
|
33
|
-
|
34
|
+
def single_step_create
|
35
|
+
connection = self.class.connection
|
36
|
+
return save if connection.prepared_statements || Rails.version < '5.2'
|
34
37
|
|
35
|
-
|
36
|
-
|
37
|
-
job._write_attribute(column, current_time)
|
38
|
-
end
|
39
|
-
end
|
38
|
+
# a before_save callback that we're skipping
|
39
|
+
initialize_defaults
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
attribute_names = job.partial_writes? ? job.send(:keys_for_partial_write) : self.attribute_names
|
47
|
-
values = job.send(:attributes_with_values_for_create, attribute_names)
|
41
|
+
current_time = current_time_from_proper_timezone
|
42
|
+
|
43
|
+
all_timestamp_attributes_in_model.each do |column|
|
44
|
+
if !attribute_present?(column)
|
45
|
+
_write_attribute(column, current_time)
|
48
46
|
end
|
49
|
-
im = arel_table.compile_insert(_substitute_values(values))
|
50
|
-
sql, _binds = connection.send(:to_sql_and_binds, im, [])
|
51
|
-
|
52
|
-
# https://www.postgresql.org/docs/9.5/libpq-exec.html
|
53
|
-
sql = "#{sql} RETURNING id"
|
54
|
-
# > Multiple queries sent in a single PQexec call are processed in a single transaction,
|
55
|
-
# unless there are explicit BEGIN/COMMIT commands included in the query string to divide
|
56
|
-
# it into multiple transactions.
|
57
|
-
sql = "SELECT pg_advisory_xact_lock(#{connection.quote_table_name('half_md5_as_bigint')}(#{connection.quote(values['strand'])})); #{sql}" if values["strand"]
|
58
|
-
result = connection.execute(sql, "#{self} Create")
|
59
|
-
job.id = result.values.first.first
|
60
|
-
result.clear
|
61
|
-
job.instance_variable_set(:@new_record, false)
|
62
|
-
job.changes_applied
|
63
|
-
|
64
|
-
job
|
65
47
|
end
|
48
|
+
|
49
|
+
if Rails.version >= '6'
|
50
|
+
attribute_names = attribute_names_for_partial_writes
|
51
|
+
attribute_names = attributes_for_create(attribute_names)
|
52
|
+
values = attributes_with_values(attribute_names)
|
53
|
+
else
|
54
|
+
attribute_names = partial_writes? ? keys_for_partial_write : self.attribute_names
|
55
|
+
values = attributes_with_values_for_create(attribute_names)
|
56
|
+
end
|
57
|
+
im = self.class.arel_table.compile_insert(self.class.send(:_substitute_values, values))
|
58
|
+
sql, _binds = connection.send(:to_sql_and_binds, im, [])
|
59
|
+
|
60
|
+
# https://www.postgresql.org/docs/9.5/libpq-exec.html
|
61
|
+
sql = "#{sql} RETURNING id"
|
62
|
+
# > Multiple queries sent in a single PQexec call are processed in a single transaction,
|
63
|
+
# unless there are explicit BEGIN/COMMIT commands included in the query string to divide
|
64
|
+
# it into multiple transactions.
|
65
|
+
sql = "SELECT pg_advisory_xact_lock(#{connection.quote_table_name('half_md5_as_bigint')}(#{connection.quote(values['strand'])})); #{sql}" if values["strand"]
|
66
|
+
result = connection.execute(sql, "#{self} Create")
|
67
|
+
self.id = result.values.first.first
|
68
|
+
result.clear
|
69
|
+
@new_record = false
|
70
|
+
changes_applied
|
71
|
+
|
72
|
+
self
|
73
|
+
end
|
74
|
+
|
75
|
+
def destroy
|
76
|
+
# skip transaction and callbacks
|
77
|
+
destroy_row
|
66
78
|
end
|
67
79
|
|
68
80
|
# be aware that some strand functionality is controlled by triggers on
|
@@ -264,12 +276,14 @@ module Delayed
|
|
264
276
|
# jobs in a single query.
|
265
277
|
effective_worker_names = Array(worker_names)
|
266
278
|
|
279
|
+
lock = nil
|
280
|
+
lock = "FOR UPDATE SKIP LOCKED" if connection.postgresql_version >= 90500
|
267
281
|
target_jobs = all_available(queue,
|
268
282
|
min_priority,
|
269
283
|
max_priority,
|
270
284
|
forced_latency: forced_latency).
|
271
285
|
limit(effective_worker_names.length + prefetch).
|
272
|
-
lock
|
286
|
+
lock(lock)
|
273
287
|
jobs_with_row_number = all.from(target_jobs).
|
274
288
|
select("id, ROW_NUMBER() OVER () AS row_number")
|
275
289
|
updates = "locked_by = CASE row_number "
|
@@ -363,7 +377,15 @@ module Delayed
|
|
363
377
|
def self.transaction_for_singleton(strand, on_conflict)
|
364
378
|
return yield if on_conflict == :loose
|
365
379
|
self.transaction do
|
366
|
-
|
380
|
+
if on_conflict == :patient
|
381
|
+
pg_function = 'pg_try_advisory_xact_lock'
|
382
|
+
execute_method = :select_value
|
383
|
+
else
|
384
|
+
pg_function = 'pg_advisory_xact_lock'
|
385
|
+
execute_method = :execute
|
386
|
+
end
|
387
|
+
result = connection.send(execute_method, sanitize_sql(["SELECT #{pg_function}(#{connection.quote_table_name('half_md5_as_bigint')}(?))", strand]))
|
388
|
+
return if result == false && on_conflict == :patient
|
367
389
|
yield
|
368
390
|
end
|
369
391
|
end
|
@@ -382,7 +404,7 @@ module Delayed
|
|
382
404
|
new_job.initialize_defaults
|
383
405
|
job.run_at =
|
384
406
|
case on_conflict
|
385
|
-
when :use_earliest
|
407
|
+
when :use_earliest, :patient
|
386
408
|
[job.run_at, new_job.run_at].min
|
387
409
|
when :overwrite
|
388
410
|
new_job.run_at
|
@@ -462,7 +484,7 @@ module Delayed
|
|
462
484
|
raise "job already exists" unless new_record?
|
463
485
|
self.locked_at = Delayed::Job.db_time_now
|
464
486
|
self.locked_by = worker
|
465
|
-
|
487
|
+
single_step_create
|
466
488
|
end
|
467
489
|
|
468
490
|
def fail!
|
data/lib/delayed/periodic.rb
CHANGED
@@ -47,7 +47,10 @@ class Periodic
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def enqueue
|
50
|
-
Delayed::Job.enqueue(self, @job_args.merge(:max_attempts => 1,
|
50
|
+
Delayed::Job.enqueue(self, @job_args.merge(:max_attempts => 1,
|
51
|
+
:run_at => @cron.next_time(Delayed::Periodic.now).utc.to_time,
|
52
|
+
:singleton => tag,
|
53
|
+
on_conflict: :patient))
|
51
54
|
end
|
52
55
|
|
53
56
|
def perform
|
data/lib/delayed/settings.rb
CHANGED
@@ -23,7 +23,10 @@ module Delayed
|
|
23
23
|
:worker_health_check_config,
|
24
24
|
:worker_procname_prefix,
|
25
25
|
]
|
26
|
-
SETTINGS_WITH_ARGS = [
|
26
|
+
SETTINGS_WITH_ARGS = [
|
27
|
+
:job_detailed_log_format,
|
28
|
+
:num_strands
|
29
|
+
]
|
27
30
|
|
28
31
|
SETTINGS.each do |setting|
|
29
32
|
mattr_writer(setting)
|
@@ -65,6 +68,7 @@ module Delayed
|
|
65
68
|
|
66
69
|
self.num_strands = ->(strand_name){ nil }
|
67
70
|
self.default_job_options = ->{ Hash.new }
|
71
|
+
self.job_detailed_log_format = ->(job){ job.to_json(include_root: false, only: %w(tag strand priority attempts created_at max_attempts source)) }
|
68
72
|
|
69
73
|
# Send workers KILL after QUIT if they haven't exited within the
|
70
74
|
# slow_exit_timeout
|
data/lib/delayed/version.rb
CHANGED
@@ -5,7 +5,7 @@ class ParentProcess
|
|
5
5
|
attr_reader :clients, :listen_socket
|
6
6
|
|
7
7
|
include Delayed::Logging
|
8
|
-
SIGNALS = %i{INT TERM QUIT
|
8
|
+
SIGNALS = %i{INT TERM QUIT}
|
9
9
|
|
10
10
|
def initialize(listen_socket, parent_pid: nil, config: Settings.parent_process)
|
11
11
|
@listen_socket = listen_socket
|
data/lib/delayed/worker.rb
CHANGED
@@ -253,7 +253,7 @@ class Worker
|
|
253
253
|
def log_job(job, format = :short)
|
254
254
|
case format
|
255
255
|
when :long
|
256
|
-
"#{job.full_name} #{
|
256
|
+
"#{job.full_name} #{ Settings.job_detailed_log_format.call(job) }"
|
257
257
|
else
|
258
258
|
job.full_name
|
259
259
|
end
|
data/spec/delayed/worker_spec.rb
CHANGED
@@ -38,6 +38,33 @@ describe Delayed::Worker do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
+
describe "#log_job" do
|
42
|
+
around(:each) do |block|
|
43
|
+
prev_logger = Delayed::Settings.job_detailed_log_format
|
44
|
+
block.call
|
45
|
+
Delayed::Settings.job_detailed_log_format = prev_logger
|
46
|
+
end
|
47
|
+
|
48
|
+
it "has a reasonable default format" do
|
49
|
+
payload = double(perform: nil)
|
50
|
+
job = Delayed::Job.new(payload_object: payload, priority: 25, strand: "test_jobs")
|
51
|
+
short_log_format = subject.log_job(job, :short)
|
52
|
+
expect(short_log_format).to eq("RSpec::Mocks::Double")
|
53
|
+
long_format = subject.log_job(job, :long)
|
54
|
+
expect(long_format).to eq("RSpec::Mocks::Double {\"priority\":25,\"attempts\":0,\"created_at\":null,\"tag\":\"RSpec::Mocks::Double#perform\",\"max_attempts\":null,\"strand\":\"test_jobs\",\"source\":null}")
|
55
|
+
end
|
56
|
+
|
57
|
+
it "logging format can be changed with settings" do
|
58
|
+
Delayed::Settings.job_detailed_log_format = ->(job){ "override format #{job.strand}"}
|
59
|
+
payload = double(perform: nil)
|
60
|
+
job = Delayed::Job.new(payload_object: payload, priority: 25, strand: "test_jobs")
|
61
|
+
short_log_format = subject.log_job(job, :short)
|
62
|
+
expect(short_log_format).to eq("RSpec::Mocks::Double")
|
63
|
+
long_format = subject.log_job(job, :long)
|
64
|
+
expect(long_format).to eq("RSpec::Mocks::Double override format test_jobs")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
41
68
|
describe "#run" do
|
42
69
|
it "passes extra config options through to the WorkQueue" do
|
43
70
|
expect(subject.work_queue).to receive(:get_and_lock_next_available).
|
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.15.
|
4
|
+
version: 0.15.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobias Luetke
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-07-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|
@@ -404,15 +404,10 @@ files:
|
|
404
404
|
- spec/delayed/worker/health_check_spec.rb
|
405
405
|
- spec/delayed/worker_spec.rb
|
406
406
|
- spec/gemfiles/42.gemfile
|
407
|
-
- spec/gemfiles/42.gemfile.lock
|
408
407
|
- spec/gemfiles/50.gemfile
|
409
|
-
- spec/gemfiles/50.gemfile.lock
|
410
408
|
- spec/gemfiles/51.gemfile
|
411
|
-
- spec/gemfiles/51.gemfile.lock
|
412
409
|
- spec/gemfiles/52.gemfile
|
413
|
-
- spec/gemfiles/52.gemfile.lock
|
414
410
|
- spec/gemfiles/60.gemfile
|
415
|
-
- spec/gemfiles/60.gemfile.lock
|
416
411
|
- spec/migrate/20140924140513_add_story_table.rb
|
417
412
|
- spec/redis_job_spec.rb
|
418
413
|
- spec/sample_jobs.rb
|
@@ -450,15 +445,10 @@ test_files:
|
|
450
445
|
- spec/sample_jobs.rb
|
451
446
|
- spec/spec_helper.rb
|
452
447
|
- spec/redis_job_spec.rb
|
453
|
-
- spec/gemfiles/51.gemfile.lock
|
454
|
-
- spec/gemfiles/60.gemfile.lock
|
455
|
-
- spec/gemfiles/42.gemfile.lock
|
456
|
-
- spec/gemfiles/50.gemfile.lock
|
457
448
|
- spec/gemfiles/60.gemfile
|
458
449
|
- spec/gemfiles/42.gemfile
|
459
450
|
- spec/gemfiles/52.gemfile
|
460
451
|
- spec/gemfiles/50.gemfile
|
461
|
-
- spec/gemfiles/52.gemfile.lock
|
462
452
|
- spec/gemfiles/51.gemfile
|
463
453
|
- spec/shared_jobs_specs.rb
|
464
454
|
- 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 (0.15.15)
|
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.0.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.2)
|
69
|
-
tzinfo
|
70
|
-
fugit (1.3.3)
|
71
|
-
et-orbi (~> 1.1, >= 1.1.8)
|
72
|
-
raabro (~> 1.1)
|
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.1.6)
|
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.1.3)
|
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.2
|
@@ -1,204 +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.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.6.0)
|
58
|
-
public_suffix (>= 2.0.2, < 4.0)
|
59
|
-
after_transaction_commit (2.0.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.1)
|
73
|
-
tzinfo
|
74
|
-
globalid (0.4.2)
|
75
|
-
activesupport (>= 4.2.0)
|
76
|
-
httpclient (2.8.3)
|
77
|
-
i18n (1.6.0)
|
78
|
-
concurrent-ruby (~> 1.0)
|
79
|
-
imperium (0.5.1)
|
80
|
-
addressable (~> 2.5)
|
81
|
-
httpclient (~> 2.8)
|
82
|
-
loofah (2.2.3)
|
83
|
-
crass (~> 1.0.2)
|
84
|
-
nokogiri (>= 1.5.9)
|
85
|
-
mail (2.7.1)
|
86
|
-
mini_mime (>= 0.1.1)
|
87
|
-
marcel (0.3.3)
|
88
|
-
mimemagic (~> 0.3.2)
|
89
|
-
method_source (0.9.2)
|
90
|
-
mimemagic (0.3.3)
|
91
|
-
mini_mime (1.0.2)
|
92
|
-
mini_portile2 (2.4.0)
|
93
|
-
minitest (5.11.3)
|
94
|
-
multi_json (1.13.1)
|
95
|
-
mustermann (1.0.0.beta2)
|
96
|
-
nio4r (2.4.0)
|
97
|
-
nokogiri (1.10.4)
|
98
|
-
mini_portile2 (~> 2.4.0)
|
99
|
-
pg (0.21.0)
|
100
|
-
pry (0.12.2)
|
101
|
-
coderay (~> 1.1.0)
|
102
|
-
method_source (~> 0.9.0)
|
103
|
-
public_suffix (3.1.1)
|
104
|
-
rack (2.0.7)
|
105
|
-
rack-protection (2.0.0.beta2)
|
106
|
-
rack
|
107
|
-
rack-test (1.1.0)
|
108
|
-
rack (>= 1.0, < 3)
|
109
|
-
rails (5.2.3)
|
110
|
-
actioncable (= 5.2.3)
|
111
|
-
actionmailer (= 5.2.3)
|
112
|
-
actionpack (= 5.2.3)
|
113
|
-
actionview (= 5.2.3)
|
114
|
-
activejob (= 5.2.3)
|
115
|
-
activemodel (= 5.2.3)
|
116
|
-
activerecord (= 5.2.3)
|
117
|
-
activestorage (= 5.2.3)
|
118
|
-
activesupport (= 5.2.3)
|
119
|
-
bundler (>= 1.3.0)
|
120
|
-
railties (= 5.2.3)
|
121
|
-
sprockets-rails (>= 2.0.0)
|
122
|
-
rails-dom-testing (2.0.3)
|
123
|
-
activesupport (>= 4.2.0)
|
124
|
-
nokogiri (>= 1.6)
|
125
|
-
rails-html-sanitizer (1.2.0)
|
126
|
-
loofah (~> 2.2, >= 2.2.2)
|
127
|
-
railties (5.2.3)
|
128
|
-
actionpack (= 5.2.3)
|
129
|
-
activesupport (= 5.2.3)
|
130
|
-
method_source
|
131
|
-
rake (>= 0.8.7)
|
132
|
-
thor (>= 0.19.0, < 2.0)
|
133
|
-
rake (12.3.3)
|
134
|
-
redis (4.1.2)
|
135
|
-
redis-scripting (1.0.1)
|
136
|
-
redis (>= 3.0)
|
137
|
-
rspec (3.8.0)
|
138
|
-
rspec-core (~> 3.8.0)
|
139
|
-
rspec-expectations (~> 3.8.0)
|
140
|
-
rspec-mocks (~> 3.8.0)
|
141
|
-
rspec-core (3.8.2)
|
142
|
-
rspec-support (~> 3.8.0)
|
143
|
-
rspec-expectations (3.8.4)
|
144
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
145
|
-
rspec-support (~> 3.8.0)
|
146
|
-
rspec-mocks (3.8.1)
|
147
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
148
|
-
rspec-support (~> 3.8.0)
|
149
|
-
rspec-support (3.8.2)
|
150
|
-
rufus-scheduler (3.4.2)
|
151
|
-
et-orbi (~> 1.0)
|
152
|
-
sinatra (2.0.0.beta2)
|
153
|
-
mustermann (= 1.0.0.beta2)
|
154
|
-
rack (~> 2.0)
|
155
|
-
rack-protection (= 2.0.0.beta2)
|
156
|
-
tilt (~> 2.0)
|
157
|
-
sinatra-contrib (2.0.0.beta2)
|
158
|
-
backports (>= 2.0)
|
159
|
-
multi_json
|
160
|
-
mustermann (= 1.0.0.beta2)
|
161
|
-
rack-protection (= 2.0.0.beta2)
|
162
|
-
rack-test
|
163
|
-
sinatra (= 2.0.0.beta2)
|
164
|
-
tilt (>= 1.3, < 3)
|
165
|
-
sprockets (3.7.2)
|
166
|
-
concurrent-ruby (~> 1.0)
|
167
|
-
rack (> 1, < 3)
|
168
|
-
sprockets-rails (3.2.1)
|
169
|
-
actionpack (>= 4.0)
|
170
|
-
activesupport (>= 4.0)
|
171
|
-
sprockets (>= 3.0.0)
|
172
|
-
thor (0.20.3)
|
173
|
-
thread_safe (0.3.6)
|
174
|
-
tilt (2.0.9)
|
175
|
-
timecop (0.7.1)
|
176
|
-
tzinfo (1.2.5)
|
177
|
-
thread_safe (~> 0.1)
|
178
|
-
websocket-driver (0.7.1)
|
179
|
-
websocket-extensions (>= 0.1.0)
|
180
|
-
websocket-extensions (0.1.4)
|
181
|
-
wwtd (1.3.0)
|
182
|
-
|
183
|
-
PLATFORMS
|
184
|
-
ruby
|
185
|
-
|
186
|
-
DEPENDENCIES
|
187
|
-
bump
|
188
|
-
byebug
|
189
|
-
database_cleaner (= 1.6.1)
|
190
|
-
imperium (>= 0.2.3)
|
191
|
-
inst-jobs!
|
192
|
-
pg (< 1.0)
|
193
|
-
pry
|
194
|
-
rack-test
|
195
|
-
rails (~> 5.2.0)
|
196
|
-
rake
|
197
|
-
rspec (~> 3.8.0)
|
198
|
-
sinatra (= 2.0.0.beta2)
|
199
|
-
sinatra-contrib (= 2.0.0.beta2)
|
200
|
-
timecop (= 0.7.1)
|
201
|
-
wwtd (~> 1.3.0)
|
202
|
-
|
203
|
-
BUNDLED WITH
|
204
|
-
1.16.1
|
@@ -1,220 +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 (6.0.0.rc2)
|
17
|
-
actionpack (= 6.0.0.rc2)
|
18
|
-
nio4r (~> 2.0)
|
19
|
-
websocket-driver (>= 0.6.1)
|
20
|
-
actionmailbox (6.0.0.rc2)
|
21
|
-
actionpack (= 6.0.0.rc2)
|
22
|
-
activejob (= 6.0.0.rc2)
|
23
|
-
activerecord (= 6.0.0.rc2)
|
24
|
-
activestorage (= 6.0.0.rc2)
|
25
|
-
activesupport (= 6.0.0.rc2)
|
26
|
-
mail (>= 2.7.1)
|
27
|
-
actionmailer (6.0.0.rc2)
|
28
|
-
actionpack (= 6.0.0.rc2)
|
29
|
-
actionview (= 6.0.0.rc2)
|
30
|
-
activejob (= 6.0.0.rc2)
|
31
|
-
mail (~> 2.5, >= 2.5.4)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
actionpack (6.0.0.rc2)
|
34
|
-
actionview (= 6.0.0.rc2)
|
35
|
-
activesupport (= 6.0.0.rc2)
|
36
|
-
rack (~> 2.0)
|
37
|
-
rack-test (>= 0.6.3)
|
38
|
-
rails-dom-testing (~> 2.0)
|
39
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
40
|
-
actiontext (6.0.0.rc2)
|
41
|
-
actionpack (= 6.0.0.rc2)
|
42
|
-
activerecord (= 6.0.0.rc2)
|
43
|
-
activestorage (= 6.0.0.rc2)
|
44
|
-
activesupport (= 6.0.0.rc2)
|
45
|
-
nokogiri (>= 1.8.5)
|
46
|
-
actionview (6.0.0.rc2)
|
47
|
-
activesupport (= 6.0.0.rc2)
|
48
|
-
builder (~> 3.1)
|
49
|
-
erubi (~> 1.4)
|
50
|
-
rails-dom-testing (~> 2.0)
|
51
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
52
|
-
activejob (6.0.0.rc2)
|
53
|
-
activesupport (= 6.0.0.rc2)
|
54
|
-
globalid (>= 0.3.6)
|
55
|
-
activemodel (6.0.0.rc2)
|
56
|
-
activesupport (= 6.0.0.rc2)
|
57
|
-
activerecord (6.0.0.rc2)
|
58
|
-
activemodel (= 6.0.0.rc2)
|
59
|
-
activesupport (= 6.0.0.rc2)
|
60
|
-
activestorage (6.0.0.rc2)
|
61
|
-
actionpack (= 6.0.0.rc2)
|
62
|
-
activejob (= 6.0.0.rc2)
|
63
|
-
activerecord (= 6.0.0.rc2)
|
64
|
-
marcel (~> 0.3.1)
|
65
|
-
activesupport (6.0.0.rc2)
|
66
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
67
|
-
i18n (>= 0.7, < 2)
|
68
|
-
minitest (~> 5.1)
|
69
|
-
tzinfo (~> 1.1)
|
70
|
-
zeitwerk (~> 2.1, >= 2.1.8)
|
71
|
-
addressable (2.6.0)
|
72
|
-
public_suffix (>= 2.0.2, < 4.0)
|
73
|
-
after_transaction_commit (2.0.0)
|
74
|
-
activerecord (>= 5.0)
|
75
|
-
backports (3.15.0)
|
76
|
-
builder (3.2.3)
|
77
|
-
bump (0.8.0)
|
78
|
-
byebug (11.0.1)
|
79
|
-
coderay (1.1.2)
|
80
|
-
concurrent-ruby (1.1.5)
|
81
|
-
crass (1.0.4)
|
82
|
-
database_cleaner (1.6.1)
|
83
|
-
diff-lcs (1.3)
|
84
|
-
erubi (1.8.0)
|
85
|
-
et-orbi (1.2.1)
|
86
|
-
tzinfo
|
87
|
-
globalid (0.4.2)
|
88
|
-
activesupport (>= 4.2.0)
|
89
|
-
httpclient (2.8.3)
|
90
|
-
i18n (1.6.0)
|
91
|
-
concurrent-ruby (~> 1.0)
|
92
|
-
imperium (0.5.1)
|
93
|
-
addressable (~> 2.5)
|
94
|
-
httpclient (~> 2.8)
|
95
|
-
loofah (2.2.3)
|
96
|
-
crass (~> 1.0.2)
|
97
|
-
nokogiri (>= 1.5.9)
|
98
|
-
mail (2.7.1)
|
99
|
-
mini_mime (>= 0.1.1)
|
100
|
-
marcel (0.3.3)
|
101
|
-
mimemagic (~> 0.3.2)
|
102
|
-
method_source (0.9.2)
|
103
|
-
mimemagic (0.3.3)
|
104
|
-
mini_mime (1.0.2)
|
105
|
-
mini_portile2 (2.4.0)
|
106
|
-
minitest (5.11.3)
|
107
|
-
multi_json (1.13.1)
|
108
|
-
mustermann (1.0.0.beta2)
|
109
|
-
nio4r (2.4.0)
|
110
|
-
nokogiri (1.10.4)
|
111
|
-
mini_portile2 (~> 2.4.0)
|
112
|
-
pg (0.21.0)
|
113
|
-
pry (0.12.2)
|
114
|
-
coderay (~> 1.1.0)
|
115
|
-
method_source (~> 0.9.0)
|
116
|
-
public_suffix (3.1.1)
|
117
|
-
rack (2.0.7)
|
118
|
-
rack-protection (2.0.0.beta2)
|
119
|
-
rack
|
120
|
-
rack-test (1.1.0)
|
121
|
-
rack (>= 1.0, < 3)
|
122
|
-
rails (6.0.0.rc2)
|
123
|
-
actioncable (= 6.0.0.rc2)
|
124
|
-
actionmailbox (= 6.0.0.rc2)
|
125
|
-
actionmailer (= 6.0.0.rc2)
|
126
|
-
actionpack (= 6.0.0.rc2)
|
127
|
-
actiontext (= 6.0.0.rc2)
|
128
|
-
actionview (= 6.0.0.rc2)
|
129
|
-
activejob (= 6.0.0.rc2)
|
130
|
-
activemodel (= 6.0.0.rc2)
|
131
|
-
activerecord (= 6.0.0.rc2)
|
132
|
-
activestorage (= 6.0.0.rc2)
|
133
|
-
activesupport (= 6.0.0.rc2)
|
134
|
-
bundler (>= 1.3.0)
|
135
|
-
railties (= 6.0.0.rc2)
|
136
|
-
sprockets-rails (>= 2.0.0)
|
137
|
-
rails-dom-testing (2.0.3)
|
138
|
-
activesupport (>= 4.2.0)
|
139
|
-
nokogiri (>= 1.6)
|
140
|
-
rails-html-sanitizer (1.2.0)
|
141
|
-
loofah (~> 2.2, >= 2.2.2)
|
142
|
-
railties (6.0.0.rc2)
|
143
|
-
actionpack (= 6.0.0.rc2)
|
144
|
-
activesupport (= 6.0.0.rc2)
|
145
|
-
method_source
|
146
|
-
rake (>= 0.8.7)
|
147
|
-
thor (>= 0.20.3, < 2.0)
|
148
|
-
rake (12.3.3)
|
149
|
-
redis (4.1.2)
|
150
|
-
redis-scripting (1.0.1)
|
151
|
-
redis (>= 3.0)
|
152
|
-
rspec (3.8.0)
|
153
|
-
rspec-core (~> 3.8.0)
|
154
|
-
rspec-expectations (~> 3.8.0)
|
155
|
-
rspec-mocks (~> 3.8.0)
|
156
|
-
rspec-core (3.8.2)
|
157
|
-
rspec-support (~> 3.8.0)
|
158
|
-
rspec-expectations (3.8.4)
|
159
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
160
|
-
rspec-support (~> 3.8.0)
|
161
|
-
rspec-mocks (3.8.1)
|
162
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
163
|
-
rspec-support (~> 3.8.0)
|
164
|
-
rspec-support (3.8.2)
|
165
|
-
rufus-scheduler (3.4.2)
|
166
|
-
et-orbi (~> 1.0)
|
167
|
-
sinatra (2.0.0.beta2)
|
168
|
-
mustermann (= 1.0.0.beta2)
|
169
|
-
rack (~> 2.0)
|
170
|
-
rack-protection (= 2.0.0.beta2)
|
171
|
-
tilt (~> 2.0)
|
172
|
-
sinatra-contrib (2.0.0.beta2)
|
173
|
-
backports (>= 2.0)
|
174
|
-
multi_json
|
175
|
-
mustermann (= 1.0.0.beta2)
|
176
|
-
rack-protection (= 2.0.0.beta2)
|
177
|
-
rack-test
|
178
|
-
sinatra (= 2.0.0.beta2)
|
179
|
-
tilt (>= 1.3, < 3)
|
180
|
-
sprockets (3.7.2)
|
181
|
-
concurrent-ruby (~> 1.0)
|
182
|
-
rack (> 1, < 3)
|
183
|
-
sprockets-rails (3.2.1)
|
184
|
-
actionpack (>= 4.0)
|
185
|
-
activesupport (>= 4.0)
|
186
|
-
sprockets (>= 3.0.0)
|
187
|
-
thor (0.20.3)
|
188
|
-
thread_safe (0.3.6)
|
189
|
-
tilt (2.0.9)
|
190
|
-
timecop (0.7.1)
|
191
|
-
tzinfo (1.2.5)
|
192
|
-
thread_safe (~> 0.1)
|
193
|
-
websocket-driver (0.7.1)
|
194
|
-
websocket-extensions (>= 0.1.0)
|
195
|
-
websocket-extensions (0.1.4)
|
196
|
-
wwtd (1.3.0)
|
197
|
-
zeitwerk (2.1.9)
|
198
|
-
|
199
|
-
PLATFORMS
|
200
|
-
ruby
|
201
|
-
|
202
|
-
DEPENDENCIES
|
203
|
-
bump
|
204
|
-
byebug
|
205
|
-
database_cleaner (= 1.6.1)
|
206
|
-
imperium (>= 0.2.3)
|
207
|
-
inst-jobs!
|
208
|
-
pg (< 1.0)
|
209
|
-
pry
|
210
|
-
rack-test
|
211
|
-
rails (= 6.0.0rc2)
|
212
|
-
rake
|
213
|
-
rspec (~> 3.8.0)
|
214
|
-
sinatra (= 2.0.0.beta2)
|
215
|
-
sinatra-contrib (= 2.0.0.beta2)
|
216
|
-
timecop (= 0.7.1)
|
217
|
-
wwtd (~> 1.3.0)
|
218
|
-
|
219
|
-
BUNDLED WITH
|
220
|
-
2.0.2
|