clockwork-test 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +26 -0
- data/CHANGELOG.md +26 -0
- data/Gemfile +0 -2
- data/README.md +2 -2
- data/RELEASE_PROCESS.md +2 -4
- data/clockwork-test.gemspec +2 -2
- data/lib/clockwork/test/manager.rb +16 -20
- data/lib/clockwork/test/version.rb +1 -1
- data/spec/clockwork/test/manager_spec.rb +1 -2
- data/spec/spec_helper.rb +2 -0
- metadata +13 -26
- data/.travis.yml +0 -20
- data/Appraisals +0 -23
- data/gemfiles/clockwork_1_3_1.gemfile +0 -8
- data/gemfiles/clockwork_1_3_1.gemfile.lock +0 -72
- data/gemfiles/clockwork_2_0_0.gemfile +0 -8
- data/gemfiles/clockwork_2_0_0.gemfile.lock +0 -72
- data/gemfiles/clockwork_2_0_1.gemfile +0 -8
- data/gemfiles/clockwork_2_0_1.gemfile.lock +0 -72
- data/gemfiles/clockwork_2_0_2.gemfile +0 -8
- data/gemfiles/clockwork_2_0_2.gemfile.lock +0 -72
- data/gemfiles/clockwork_2_0_3.gemfile +0 -8
- data/gemfiles/clockwork_2_0_3.gemfile.lock +0 -70
- data/gemfiles/clockwork_master.gemfile +0 -8
- data/gemfiles/clockwork_master.gemfile.lock +0 -75
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ac66ce7ba28c74d19c76db38db26700b4e46266f9b5a13443d2e20a4db8f500
|
4
|
+
data.tar.gz: 8f39d309947fd883043f6657c208c626cd5623576ab6c1629284c05163834827
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23e87c47ac6364fe1f52fbb49dd1921c4f632869155339fadc8bcc8fcb5b2ab08ff6447cb73685bc21e5ced30fc476218bcf7327d71214e601674ae8cc7926d
|
7
|
+
data.tar.gz: 68a217dd2373f000a99a57c9f98d8be9b5e9596de266ba80b60dc197e03f62391c29060170f002ff2149d14b82084ba213a32a719b30096246652244bcb4e777
|
@@ -0,0 +1,26 @@
|
|
1
|
+
name: Ruby
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ main ]
|
6
|
+
pull_request:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
ruby: [3.0, 3.1, 3.2, head]
|
15
|
+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
|
16
|
+
steps:
|
17
|
+
- uses: actions/checkout@v3
|
18
|
+
- name: Set up Ruby
|
19
|
+
uses: ruby/setup-ruby@v1
|
20
|
+
with:
|
21
|
+
bundler-cache: true
|
22
|
+
ruby-version: ${{ matrix.ruby }}
|
23
|
+
- name: Install dependencies
|
24
|
+
run: bundle install
|
25
|
+
- name: Run tests
|
26
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
## Current release (in development)
|
2
2
|
|
3
|
+
## 0.5.0 [2023-04-20]
|
4
|
+
|
5
|
+
* Support timecop safe mode [#39] (https://github.com/kevin-j-m/clockwork-test/pull/39)
|
6
|
+
|
7
|
+
*Felix Dumit*
|
8
|
+
|
9
|
+
* Test against ruby 3.0, 3.1, 3.2
|
10
|
+
|
11
|
+
*Kevin Murphy*
|
12
|
+
|
13
|
+
* Remove testing prior clockwork versions
|
14
|
+
|
15
|
+
* *Kevin Murphy*
|
16
|
+
|
17
|
+
* Test against latest release version of clockwork at the time: 2.0.4
|
18
|
+
|
19
|
+
* *Kevin Murphy*
|
20
|
+
|
21
|
+
* Test against latest ruby 2.5.x, 2.6.x, 2.7.x
|
22
|
+
|
23
|
+
* *Kevin Murphy*
|
24
|
+
|
25
|
+
* Update rake
|
26
|
+
|
27
|
+
* *Kevin Murphy*
|
28
|
+
|
3
29
|
## 0.4.0 [2020-04-23]
|
4
30
|
|
5
31
|
* Support clockwork callbacks [#34] (https://github.com/kevin-j-m/clockwork-test/pull/34)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# Clockwork::Test
|
2
2
|
|
3
|
-
|
3
|
+

|
4
4
|
|
5
5
|
[Clockwork](https://rubygems.org/gems/clockwork) is a scheduler process for running scheduled jobs. These scheduled jobs are likely of critical importance to your application. You need to ensure that the jobs run when they should, as often as they should, and with the proper behavior when run.
|
6
6
|
|
7
7
|
`Clockwork::Test` includes additional functionality that makes testing of your `clock.rb` file easy. This gem can help make sure that you have scheduled your events appropriately, including testing `if:` or `at:` conditions, as well as allowing you to run assertions against the code that is executed when a job is run.
|
8
8
|
|
9
|
-
`Clockwork::Test` runs its test suite against various versions of
|
9
|
+
`Clockwork::Test` runs its test suite against various versions of ruby, which are documented in the [GitHub Actions configuration](.github/workflows/test.yml).
|
10
10
|
|
11
11
|
`Clockwork::Test` does not require any specific test framework to be used with it, though all examples will use `rspec`.
|
12
12
|
|
data/RELEASE_PROCESS.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
1
|
* Bump version number in `lib/clockwork/test/version.rb`.
|
2
2
|
* Update the [CHANGELOG](CHANGELOG.md), moving the current release work to under the version number.
|
3
|
-
*
|
4
|
-
*
|
5
|
-
* Push the release to RubyGems `rake release`.
|
6
|
-
* Check the RubyGems [twitter account](https://twitter.com/rubygems) to publicize the release.
|
3
|
+
* Run tests with `bundle exec rake`.
|
4
|
+
* Push the release to RubyGems with `rake release`.
|
data/clockwork-test.gemspec
CHANGED
@@ -19,9 +19,9 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
21
|
spec.add_development_dependency "activesupport"
|
22
|
-
spec.add_development_dependency "bundler"
|
22
|
+
spec.add_development_dependency "bundler"
|
23
23
|
spec.add_development_dependency "pry"
|
24
|
-
spec.add_development_dependency "rake", "~>
|
24
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
25
25
|
spec.add_development_dependency "rspec"
|
26
26
|
spec.add_development_dependency "rspec-its"
|
27
27
|
|
@@ -15,16 +15,16 @@ module Clockwork
|
|
15
15
|
def run(opts = {})
|
16
16
|
set_opts(opts)
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
|
18
|
+
run_block = proc do
|
19
|
+
yield if block_given?
|
20
|
+
tick_loop
|
21
21
|
end
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
23
|
+
if start_time
|
24
|
+
Timecop.travel(start_time, &run_block)
|
25
|
+
else
|
26
|
+
run_block.call
|
27
|
+
end
|
28
28
|
end
|
29
29
|
|
30
30
|
def ran_job?(job)
|
@@ -57,21 +57,17 @@ module Clockwork
|
|
57
57
|
attr_reader :history
|
58
58
|
|
59
59
|
def tick_loop
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
60
|
+
loop.with_index do |_, index|
|
61
|
+
Timecop.travel(Time.current + @tick_speed.to_i * index) do
|
62
|
+
return if ticks_exceeded? || time_exceeded?
|
63
|
+
|
64
|
+
update_job_history
|
65
|
+
tick
|
66
|
+
@total_ticks += 1
|
67
|
+
end
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
def increase_time
|
72
|
-
Timecop.travel(Time.now + @tick_speed) if @tick_speed
|
73
|
-
end
|
74
|
-
|
75
71
|
def register(period, job, block, options)
|
76
72
|
event = ::Clockwork::Test::Event.new(self, period, job, block || handler, options)
|
77
73
|
@events << event
|
@@ -28,8 +28,7 @@ describe Clockwork::Test::Manager do
|
|
28
28
|
context "start_time provided, while end_time is not" do
|
29
29
|
let(:opts) { { start_time: 5.minutes.ago } }
|
30
30
|
|
31
|
-
|
32
|
-
after { Timecop.return }
|
31
|
+
around { |example| Timecop.freeze(&example) }
|
33
32
|
|
34
33
|
its(:start_time) { should eq opts[:start_time] }
|
35
34
|
its(:end_time) { should eq Time.current }
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clockwork-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Murphy
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: pry
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '13.0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '13.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,10 +129,9 @@ executables: []
|
|
129
129
|
extensions: []
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
|
+
- ".github/workflows/test.yml"
|
132
133
|
- ".gitignore"
|
133
134
|
- ".rspec"
|
134
|
-
- ".travis.yml"
|
135
|
-
- Appraisals
|
136
135
|
- CHANGELOG.md
|
137
136
|
- Gemfile
|
138
137
|
- LICENSE.txt
|
@@ -140,18 +139,6 @@ files:
|
|
140
139
|
- RELEASE_PROCESS.md
|
141
140
|
- Rakefile
|
142
141
|
- clockwork-test.gemspec
|
143
|
-
- gemfiles/clockwork_1_3_1.gemfile
|
144
|
-
- gemfiles/clockwork_1_3_1.gemfile.lock
|
145
|
-
- gemfiles/clockwork_2_0_0.gemfile
|
146
|
-
- gemfiles/clockwork_2_0_0.gemfile.lock
|
147
|
-
- gemfiles/clockwork_2_0_1.gemfile
|
148
|
-
- gemfiles/clockwork_2_0_1.gemfile.lock
|
149
|
-
- gemfiles/clockwork_2_0_2.gemfile
|
150
|
-
- gemfiles/clockwork_2_0_2.gemfile.lock
|
151
|
-
- gemfiles/clockwork_2_0_3.gemfile
|
152
|
-
- gemfiles/clockwork_2_0_3.gemfile.lock
|
153
|
-
- gemfiles/clockwork_master.gemfile
|
154
|
-
- gemfiles/clockwork_master.gemfile.lock
|
155
142
|
- lib/clockwork/test.rb
|
156
143
|
- lib/clockwork/test/event.rb
|
157
144
|
- lib/clockwork/test/job_history.rb
|
@@ -169,7 +156,7 @@ homepage: https://github.com/kevin-j-m/clockwork-test
|
|
169
156
|
licenses:
|
170
157
|
- MIT
|
171
158
|
metadata: {}
|
172
|
-
post_install_message:
|
159
|
+
post_install_message:
|
173
160
|
rdoc_options: []
|
174
161
|
require_paths:
|
175
162
|
- lib
|
@@ -184,8 +171,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
184
171
|
- !ruby/object:Gem::Version
|
185
172
|
version: '0'
|
186
173
|
requirements: []
|
187
|
-
rubygems_version: 3.
|
188
|
-
signing_key:
|
174
|
+
rubygems_version: 3.4.12
|
175
|
+
signing_key:
|
189
176
|
specification_version: 4
|
190
177
|
summary: Test clockwork scheduled jobs
|
191
178
|
test_files:
|
data/.travis.yml
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
sudo: false
|
2
|
-
language: ruby
|
3
|
-
cache: bundler
|
4
|
-
rvm:
|
5
|
-
- 2.2.9
|
6
|
-
- 2.3.6
|
7
|
-
- 2.4.3
|
8
|
-
- ruby-head
|
9
|
-
script:
|
10
|
-
- bundle exec rspec
|
11
|
-
matrix:
|
12
|
-
allow_failures:
|
13
|
-
- rvm: ruby-head
|
14
|
-
gemfile:
|
15
|
-
- gemfiles/clockwork_master.gemfile
|
16
|
-
- gemfiles/clockwork_1_3_1.gemfile
|
17
|
-
- gemfiles/clockwork_2_0_0.gemfile
|
18
|
-
- gemfiles/clockwork_2_0_1.gemfile
|
19
|
-
- gemfiles/clockwork_2_0_2.gemfile
|
20
|
-
- gemfiles/clockwork_2_0_3.gemfile
|
data/Appraisals
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
appraise "clockwork-master" do
|
2
|
-
gem "clockwork", git: "https://github.com/Rykian/clockwork"
|
3
|
-
end
|
4
|
-
|
5
|
-
appraise "clockwork-1-3-1" do
|
6
|
-
gem "clockwork", "1.3.1"
|
7
|
-
end
|
8
|
-
|
9
|
-
appraise "clockwork-2-0-0" do
|
10
|
-
gem "clockwork", "2.0.0"
|
11
|
-
end
|
12
|
-
|
13
|
-
appraise "clockwork-2-0-1" do
|
14
|
-
gem "clockwork", "2.0.1"
|
15
|
-
end
|
16
|
-
|
17
|
-
appraise "clockwork-2-0-2" do
|
18
|
-
gem "clockwork", "2.0.2"
|
19
|
-
end
|
20
|
-
|
21
|
-
appraise "clockwork-2-0-3" do
|
22
|
-
gem "clockwork", "2.0.3"
|
23
|
-
end
|
@@ -1,72 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
clockwork-test (0.4.0)
|
5
|
-
clockwork
|
6
|
-
timecop
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (5.0.2)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (~> 0.7)
|
14
|
-
minitest (~> 5.1)
|
15
|
-
tzinfo (~> 1.1)
|
16
|
-
appraisal (2.1.0)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
clockwork (1.3.1)
|
21
|
-
activesupport
|
22
|
-
tzinfo
|
23
|
-
coderay (1.1.1)
|
24
|
-
concurrent-ruby (1.0.5)
|
25
|
-
diff-lcs (1.3)
|
26
|
-
i18n (0.8.1)
|
27
|
-
method_source (0.8.2)
|
28
|
-
minitest (5.10.1)
|
29
|
-
pry (0.10.4)
|
30
|
-
coderay (~> 1.1.0)
|
31
|
-
method_source (~> 0.8.1)
|
32
|
-
slop (~> 3.4)
|
33
|
-
rake (10.5.0)
|
34
|
-
rspec (3.5.0)
|
35
|
-
rspec-core (~> 3.5.0)
|
36
|
-
rspec-expectations (~> 3.5.0)
|
37
|
-
rspec-mocks (~> 3.5.0)
|
38
|
-
rspec-core (3.5.4)
|
39
|
-
rspec-support (~> 3.5.0)
|
40
|
-
rspec-expectations (3.5.0)
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
-
rspec-support (~> 3.5.0)
|
43
|
-
rspec-its (1.2.0)
|
44
|
-
rspec-core (>= 3.0.0)
|
45
|
-
rspec-expectations (>= 3.0.0)
|
46
|
-
rspec-mocks (3.5.0)
|
47
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.5.0)
|
49
|
-
rspec-support (3.5.0)
|
50
|
-
slop (3.6.0)
|
51
|
-
thor (0.19.4)
|
52
|
-
thread_safe (0.3.6)
|
53
|
-
timecop (0.9.1)
|
54
|
-
tzinfo (1.2.3)
|
55
|
-
thread_safe (~> 0.1)
|
56
|
-
|
57
|
-
PLATFORMS
|
58
|
-
ruby
|
59
|
-
|
60
|
-
DEPENDENCIES
|
61
|
-
activesupport
|
62
|
-
appraisal
|
63
|
-
bundler (~> 1.7)
|
64
|
-
clockwork (= 1.3.1)
|
65
|
-
clockwork-test!
|
66
|
-
pry
|
67
|
-
rake (~> 10.0)
|
68
|
-
rspec
|
69
|
-
rspec-its
|
70
|
-
|
71
|
-
BUNDLED WITH
|
72
|
-
1.17.3
|
@@ -1,72 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
clockwork-test (0.4.0)
|
5
|
-
clockwork
|
6
|
-
timecop
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (5.0.2)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (~> 0.7)
|
14
|
-
minitest (~> 5.1)
|
15
|
-
tzinfo (~> 1.1)
|
16
|
-
appraisal (2.1.0)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
clockwork (2.0.0)
|
21
|
-
activesupport
|
22
|
-
tzinfo
|
23
|
-
coderay (1.1.1)
|
24
|
-
concurrent-ruby (1.0.5)
|
25
|
-
diff-lcs (1.3)
|
26
|
-
i18n (0.8.1)
|
27
|
-
method_source (0.8.2)
|
28
|
-
minitest (5.10.1)
|
29
|
-
pry (0.10.4)
|
30
|
-
coderay (~> 1.1.0)
|
31
|
-
method_source (~> 0.8.1)
|
32
|
-
slop (~> 3.4)
|
33
|
-
rake (10.5.0)
|
34
|
-
rspec (3.5.0)
|
35
|
-
rspec-core (~> 3.5.0)
|
36
|
-
rspec-expectations (~> 3.5.0)
|
37
|
-
rspec-mocks (~> 3.5.0)
|
38
|
-
rspec-core (3.5.4)
|
39
|
-
rspec-support (~> 3.5.0)
|
40
|
-
rspec-expectations (3.5.0)
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
-
rspec-support (~> 3.5.0)
|
43
|
-
rspec-its (1.2.0)
|
44
|
-
rspec-core (>= 3.0.0)
|
45
|
-
rspec-expectations (>= 3.0.0)
|
46
|
-
rspec-mocks (3.5.0)
|
47
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.5.0)
|
49
|
-
rspec-support (3.5.0)
|
50
|
-
slop (3.6.0)
|
51
|
-
thor (0.19.4)
|
52
|
-
thread_safe (0.3.6)
|
53
|
-
timecop (0.9.1)
|
54
|
-
tzinfo (1.2.3)
|
55
|
-
thread_safe (~> 0.1)
|
56
|
-
|
57
|
-
PLATFORMS
|
58
|
-
ruby
|
59
|
-
|
60
|
-
DEPENDENCIES
|
61
|
-
activesupport
|
62
|
-
appraisal
|
63
|
-
bundler (~> 1.7)
|
64
|
-
clockwork (= 2.0.0)
|
65
|
-
clockwork-test!
|
66
|
-
pry
|
67
|
-
rake (~> 10.0)
|
68
|
-
rspec
|
69
|
-
rspec-its
|
70
|
-
|
71
|
-
BUNDLED WITH
|
72
|
-
1.17.3
|
@@ -1,72 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
clockwork-test (0.4.0)
|
5
|
-
clockwork
|
6
|
-
timecop
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (5.0.2)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (~> 0.7)
|
14
|
-
minitest (~> 5.1)
|
15
|
-
tzinfo (~> 1.1)
|
16
|
-
appraisal (2.1.0)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
clockwork (2.0.1)
|
21
|
-
activesupport
|
22
|
-
tzinfo
|
23
|
-
coderay (1.1.1)
|
24
|
-
concurrent-ruby (1.0.5)
|
25
|
-
diff-lcs (1.3)
|
26
|
-
i18n (0.8.1)
|
27
|
-
method_source (0.8.2)
|
28
|
-
minitest (5.10.1)
|
29
|
-
pry (0.10.4)
|
30
|
-
coderay (~> 1.1.0)
|
31
|
-
method_source (~> 0.8.1)
|
32
|
-
slop (~> 3.4)
|
33
|
-
rake (10.5.0)
|
34
|
-
rspec (3.5.0)
|
35
|
-
rspec-core (~> 3.5.0)
|
36
|
-
rspec-expectations (~> 3.5.0)
|
37
|
-
rspec-mocks (~> 3.5.0)
|
38
|
-
rspec-core (3.5.4)
|
39
|
-
rspec-support (~> 3.5.0)
|
40
|
-
rspec-expectations (3.5.0)
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
-
rspec-support (~> 3.5.0)
|
43
|
-
rspec-its (1.2.0)
|
44
|
-
rspec-core (>= 3.0.0)
|
45
|
-
rspec-expectations (>= 3.0.0)
|
46
|
-
rspec-mocks (3.5.0)
|
47
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.5.0)
|
49
|
-
rspec-support (3.5.0)
|
50
|
-
slop (3.6.0)
|
51
|
-
thor (0.19.4)
|
52
|
-
thread_safe (0.3.6)
|
53
|
-
timecop (0.9.1)
|
54
|
-
tzinfo (1.2.3)
|
55
|
-
thread_safe (~> 0.1)
|
56
|
-
|
57
|
-
PLATFORMS
|
58
|
-
ruby
|
59
|
-
|
60
|
-
DEPENDENCIES
|
61
|
-
activesupport
|
62
|
-
appraisal
|
63
|
-
bundler (~> 1.7)
|
64
|
-
clockwork (= 2.0.1)
|
65
|
-
clockwork-test!
|
66
|
-
pry
|
67
|
-
rake (~> 10.0)
|
68
|
-
rspec
|
69
|
-
rspec-its
|
70
|
-
|
71
|
-
BUNDLED WITH
|
72
|
-
1.17.3
|
@@ -1,72 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
clockwork-test (0.4.0)
|
5
|
-
clockwork
|
6
|
-
timecop
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (5.0.2)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (~> 0.7)
|
14
|
-
minitest (~> 5.1)
|
15
|
-
tzinfo (~> 1.1)
|
16
|
-
appraisal (2.1.0)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
clockwork (2.0.2)
|
21
|
-
activesupport
|
22
|
-
tzinfo
|
23
|
-
coderay (1.1.1)
|
24
|
-
concurrent-ruby (1.0.5)
|
25
|
-
diff-lcs (1.3)
|
26
|
-
i18n (0.8.1)
|
27
|
-
method_source (0.8.2)
|
28
|
-
minitest (5.10.1)
|
29
|
-
pry (0.10.4)
|
30
|
-
coderay (~> 1.1.0)
|
31
|
-
method_source (~> 0.8.1)
|
32
|
-
slop (~> 3.4)
|
33
|
-
rake (10.5.0)
|
34
|
-
rspec (3.5.0)
|
35
|
-
rspec-core (~> 3.5.0)
|
36
|
-
rspec-expectations (~> 3.5.0)
|
37
|
-
rspec-mocks (~> 3.5.0)
|
38
|
-
rspec-core (3.5.4)
|
39
|
-
rspec-support (~> 3.5.0)
|
40
|
-
rspec-expectations (3.5.0)
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
-
rspec-support (~> 3.5.0)
|
43
|
-
rspec-its (1.2.0)
|
44
|
-
rspec-core (>= 3.0.0)
|
45
|
-
rspec-expectations (>= 3.0.0)
|
46
|
-
rspec-mocks (3.5.0)
|
47
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
48
|
-
rspec-support (~> 3.5.0)
|
49
|
-
rspec-support (3.5.0)
|
50
|
-
slop (3.6.0)
|
51
|
-
thor (0.19.4)
|
52
|
-
thread_safe (0.3.6)
|
53
|
-
timecop (0.9.1)
|
54
|
-
tzinfo (1.2.3)
|
55
|
-
thread_safe (~> 0.1)
|
56
|
-
|
57
|
-
PLATFORMS
|
58
|
-
ruby
|
59
|
-
|
60
|
-
DEPENDENCIES
|
61
|
-
activesupport
|
62
|
-
appraisal
|
63
|
-
bundler (~> 1.7)
|
64
|
-
clockwork (= 2.0.2)
|
65
|
-
clockwork-test!
|
66
|
-
pry
|
67
|
-
rake (~> 10.0)
|
68
|
-
rspec
|
69
|
-
rspec-its
|
70
|
-
|
71
|
-
BUNDLED WITH
|
72
|
-
1.17.3
|
@@ -1,70 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
clockwork-test (0.4.0)
|
5
|
-
clockwork
|
6
|
-
timecop
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activesupport (5.2.0)
|
12
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
-
i18n (>= 0.7, < 2)
|
14
|
-
minitest (~> 5.1)
|
15
|
-
tzinfo (~> 1.1)
|
16
|
-
appraisal (2.2.0)
|
17
|
-
bundler
|
18
|
-
rake
|
19
|
-
thor (>= 0.14.0)
|
20
|
-
clockwork (2.0.3)
|
21
|
-
tzinfo
|
22
|
-
coderay (1.1.2)
|
23
|
-
concurrent-ruby (1.0.5)
|
24
|
-
diff-lcs (1.3)
|
25
|
-
i18n (1.0.1)
|
26
|
-
concurrent-ruby (~> 1.0)
|
27
|
-
method_source (0.9.0)
|
28
|
-
minitest (5.11.3)
|
29
|
-
pry (0.11.3)
|
30
|
-
coderay (~> 1.1.0)
|
31
|
-
method_source (~> 0.9.0)
|
32
|
-
rake (10.5.0)
|
33
|
-
rspec (3.7.0)
|
34
|
-
rspec-core (~> 3.7.0)
|
35
|
-
rspec-expectations (~> 3.7.0)
|
36
|
-
rspec-mocks (~> 3.7.0)
|
37
|
-
rspec-core (3.7.1)
|
38
|
-
rspec-support (~> 3.7.0)
|
39
|
-
rspec-expectations (3.7.0)
|
40
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
-
rspec-support (~> 3.7.0)
|
42
|
-
rspec-its (1.2.0)
|
43
|
-
rspec-core (>= 3.0.0)
|
44
|
-
rspec-expectations (>= 3.0.0)
|
45
|
-
rspec-mocks (3.7.0)
|
46
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
47
|
-
rspec-support (~> 3.7.0)
|
48
|
-
rspec-support (3.7.1)
|
49
|
-
thor (0.20.0)
|
50
|
-
thread_safe (0.3.6)
|
51
|
-
timecop (0.9.1)
|
52
|
-
tzinfo (1.2.5)
|
53
|
-
thread_safe (~> 0.1)
|
54
|
-
|
55
|
-
PLATFORMS
|
56
|
-
ruby
|
57
|
-
|
58
|
-
DEPENDENCIES
|
59
|
-
activesupport
|
60
|
-
appraisal
|
61
|
-
bundler (~> 1.7)
|
62
|
-
clockwork (= 2.0.3)
|
63
|
-
clockwork-test!
|
64
|
-
pry
|
65
|
-
rake (~> 10.0)
|
66
|
-
rspec
|
67
|
-
rspec-its
|
68
|
-
|
69
|
-
BUNDLED WITH
|
70
|
-
1.17.3
|
@@ -1,75 +0,0 @@
|
|
1
|
-
GIT
|
2
|
-
remote: https://github.com/Rykian/clockwork
|
3
|
-
revision: 11f80a0f206d17060b07a55bffec23e935279d1c
|
4
|
-
specs:
|
5
|
-
clockwork (2.0.2)
|
6
|
-
tzinfo
|
7
|
-
|
8
|
-
PATH
|
9
|
-
remote: ..
|
10
|
-
specs:
|
11
|
-
clockwork-test (0.4.0)
|
12
|
-
clockwork
|
13
|
-
timecop
|
14
|
-
|
15
|
-
GEM
|
16
|
-
remote: https://rubygems.org/
|
17
|
-
specs:
|
18
|
-
activesupport (5.1.4)
|
19
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
20
|
-
i18n (~> 0.7)
|
21
|
-
minitest (~> 5.1)
|
22
|
-
tzinfo (~> 1.1)
|
23
|
-
appraisal (2.2.0)
|
24
|
-
bundler
|
25
|
-
rake
|
26
|
-
thor (>= 0.14.0)
|
27
|
-
coderay (1.1.2)
|
28
|
-
concurrent-ruby (1.0.5)
|
29
|
-
diff-lcs (1.3)
|
30
|
-
i18n (0.9.1)
|
31
|
-
concurrent-ruby (~> 1.0)
|
32
|
-
method_source (0.9.0)
|
33
|
-
minitest (5.10.3)
|
34
|
-
pry (0.11.3)
|
35
|
-
coderay (~> 1.1.0)
|
36
|
-
method_source (~> 0.9.0)
|
37
|
-
rake (10.5.0)
|
38
|
-
rspec (3.7.0)
|
39
|
-
rspec-core (~> 3.7.0)
|
40
|
-
rspec-expectations (~> 3.7.0)
|
41
|
-
rspec-mocks (~> 3.7.0)
|
42
|
-
rspec-core (3.7.0)
|
43
|
-
rspec-support (~> 3.7.0)
|
44
|
-
rspec-expectations (3.7.0)
|
45
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
46
|
-
rspec-support (~> 3.7.0)
|
47
|
-
rspec-its (1.2.0)
|
48
|
-
rspec-core (>= 3.0.0)
|
49
|
-
rspec-expectations (>= 3.0.0)
|
50
|
-
rspec-mocks (3.7.0)
|
51
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
-
rspec-support (~> 3.7.0)
|
53
|
-
rspec-support (3.7.0)
|
54
|
-
thor (0.20.0)
|
55
|
-
thread_safe (0.3.6)
|
56
|
-
timecop (0.9.1)
|
57
|
-
tzinfo (1.2.4)
|
58
|
-
thread_safe (~> 0.1)
|
59
|
-
|
60
|
-
PLATFORMS
|
61
|
-
ruby
|
62
|
-
|
63
|
-
DEPENDENCIES
|
64
|
-
activesupport
|
65
|
-
appraisal
|
66
|
-
bundler (~> 1.7)
|
67
|
-
clockwork!
|
68
|
-
clockwork-test!
|
69
|
-
pry
|
70
|
-
rake (~> 10.0)
|
71
|
-
rspec
|
72
|
-
rspec-its
|
73
|
-
|
74
|
-
BUNDLED WITH
|
75
|
-
1.17.3
|