roqua-support 0.3.4 → 0.3.5
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/lib/roqua-support/version.rb +1 -1
- data/lib/roqua/scheduling/scheduler.rb +2 -0
- data/spec/roqua/scheduling/scheduler_spec.rb +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32f750bb036e58d68411a3a96f126a551cb4766811fb7fa0daea753a6d7d3613
|
|
4
|
+
data.tar.gz: 4895312bd0ab8055da376681c894d32a62dbb9885d923d6a452cf3688ee076fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0187621d35a2c8b8e379eb330f6b91a5a34856b6fe411fa2837850af5fb885ce97cb8f69cd2720ce5908b2e081b72f2445fee91a8216d3836be5f3571864ae19'
|
|
7
|
+
data.tar.gz: 6148e080d64301dd0cb410ed4c5d0337018411cea03041b865e6c239936ed12f6a7032b451704dbecac984a1c66e5340d87fb69632b184f0fbdaa807f6292765
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -9,7 +9,7 @@ GIT
|
|
|
9
9
|
PATH
|
|
10
10
|
remote: .
|
|
11
11
|
specs:
|
|
12
|
-
roqua-support (0.3.
|
|
12
|
+
roqua-support (0.3.5)
|
|
13
13
|
active_interaction (~> 3.0)
|
|
14
14
|
activesupport (>= 5.1, < 6.1)
|
|
15
15
|
appsignal (>= 2.9, < 2.11)
|
|
@@ -49,7 +49,7 @@ GEM
|
|
|
49
49
|
bundler
|
|
50
50
|
rake
|
|
51
51
|
thor (>= 0.14.0)
|
|
52
|
-
appsignal (2.10.
|
|
52
|
+
appsignal (2.10.12)
|
|
53
53
|
rack
|
|
54
54
|
ast (2.4.0)
|
|
55
55
|
builder (3.2.4)
|
|
@@ -86,6 +86,7 @@ describe Roqua::Scheduling::Scheduler do
|
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
it 'counts task calls' do
|
|
89
|
+
expect(Appsignal).to receive(:increment_counter).with('scheduler.completed', 1)
|
|
89
90
|
expect(Appsignal).to receive(:increment_counter).with('scheduler.run_task.completed', 1, task_name: 'hourly')
|
|
90
91
|
subject.ping
|
|
91
92
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roqua-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marten Veldthuis
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: active_interaction
|
|
@@ -257,7 +257,7 @@ homepage: https://github.com/roqua/roqua-support
|
|
|
257
257
|
licenses:
|
|
258
258
|
- MIT
|
|
259
259
|
metadata: {}
|
|
260
|
-
post_install_message:
|
|
260
|
+
post_install_message:
|
|
261
261
|
rdoc_options: []
|
|
262
262
|
require_paths:
|
|
263
263
|
- lib
|
|
@@ -272,8 +272,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
272
272
|
- !ruby/object:Gem::Version
|
|
273
273
|
version: '0'
|
|
274
274
|
requirements: []
|
|
275
|
-
rubygems_version: 3.
|
|
276
|
-
signing_key:
|
|
275
|
+
rubygems_version: 3.1.4
|
|
276
|
+
signing_key:
|
|
277
277
|
specification_version: 4
|
|
278
278
|
summary: Helper objects and proxies used by a lot of RoQua applications
|
|
279
279
|
test_files:
|