rorvswild 1.10.0 → 1.10.1
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/lib/rorvswild/agent.rb +2 -0
- data/lib/rorvswild/installer.rb +1 -1
- data/lib/rorvswild/local/queue.rb +3 -1
- data/lib/rorvswild/version.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec6464a7193ffe1e78cc6d84804a74e37dd66e20f086b357215e143cca8e3339
|
|
4
|
+
data.tar.gz: 0547a433e44c778c2f7199be0e6532325e572ac868f85b2209dd99eea1ba4593
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5929a6e6deb9fab72c05e5446363ed3cab3368c2b3c7a2e68ef9e4fa58b0fcc1736421936b6153a8eab650f33a4337bb691744af4739bd99dad63db9c1dbdb2d
|
|
7
|
+
data.tar.gz: d5533fe4bc53ec97eed6d52e8637a7f231ffed0d56af0716d7e1713d0d3042d88620c201d50edb61e29af26bd786d666d30a403d54ff9b64d046b15ae180fb71
|
data/lib/rorvswild/agent.rb
CHANGED
|
@@ -113,10 +113,12 @@ module RorVsWild
|
|
|
113
113
|
|
|
114
114
|
def start_execution(execution)
|
|
115
115
|
Thread.current[:rorvswild_execution] ||= execution
|
|
116
|
+
RorVsWild::Section.start
|
|
116
117
|
end
|
|
117
118
|
|
|
118
119
|
def stop_execution
|
|
119
120
|
return unless execution = current_execution
|
|
121
|
+
RorVsWild::Section.stop
|
|
120
122
|
execution.stop
|
|
121
123
|
case execution
|
|
122
124
|
when Execution::Job then queue_job
|
data/lib/rorvswild/installer.rb
CHANGED
|
@@ -52,7 +52,7 @@ production:
|
|
|
52
52
|
# logger: log/rorvswild.log # By default it uses Rails.logger or Logger.new(STDOUT)
|
|
53
53
|
#
|
|
54
54
|
# # Deployment tracking is working without any actions from your part if the Rails app
|
|
55
|
-
# # is inside a Git
|
|
55
|
+
# # is inside a Git repository, is deployed via Capistrano.
|
|
56
56
|
# # In the other cases, you can provide the following details.
|
|
57
57
|
# deployment:
|
|
58
58
|
# revision: <%= "Anything that will return the deployment version" %> # Mandatory
|
data/lib/rorvswild/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rorvswild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexis Bernard
|
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
|
-
rubygems_version: 3.6.
|
|
91
|
+
rubygems_version: 3.6.9
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: Ruby on Rails applications monitoring
|
|
94
94
|
test_files: []
|