diffend-monitor 0.2.38 → 0.2.39
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.github/workflows/ci.yml +23 -1
- data/CHANGELOG.md +5 -1
- data/Gemfile.lock +1 -1
- data/lib/diffend/monitor.rb +4 -0
- data/lib/diffend/version.rb +1 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aad29d6d630d04366e4421991bfdd26d1725878fe5986e240a36e26e9840bab3
|
4
|
+
data.tar.gz: 69ac92f632883cf7bcc9e8bf42f3193cc0f034098401e037be143f8b2dce95fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 526ee6bc6e464d15bff85944cbec34d072a4a4fce8b3658423526cb7ec60c44413769e2b84b778c9f7e6291ac98afcc2c06f05af385c787198cd3c3798ff30c1
|
7
|
+
data.tar.gz: adf72aa9eb79f43aca61022172f2323e0a0f859b4954df63dbe62631b0e9713ff775f712032dda5e65fc04d82ae66b6d37d06a7f4567a5d4f54d5664c47b9d15
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.github/workflows/ci.yml
CHANGED
@@ -2,8 +2,11 @@ name: ci
|
|
2
2
|
|
3
3
|
jobs:
|
4
4
|
specs:
|
5
|
-
|
5
|
+
needs:
|
6
|
+
- diffend
|
7
|
+
- coditsu
|
6
8
|
|
9
|
+
runs-on: ubuntu-latest
|
7
10
|
strategy:
|
8
11
|
fail-fast: false
|
9
12
|
matrix:
|
@@ -46,6 +49,25 @@ jobs:
|
|
46
49
|
GITHUB_COVERAGE: ${{matrix.coverage}}
|
47
50
|
run: bundle _${{matrix.bundler}}_ exec rspec
|
48
51
|
|
52
|
+
diffend:
|
53
|
+
runs-on: ubuntu-latest
|
54
|
+
strategy:
|
55
|
+
fail-fast: false
|
56
|
+
steps:
|
57
|
+
- uses: actions/checkout@v2
|
58
|
+
with:
|
59
|
+
fetch-depth: 0
|
60
|
+
- name: Set up Ruby
|
61
|
+
uses: ruby/setup-ruby@v1
|
62
|
+
with:
|
63
|
+
ruby-version: 3.0
|
64
|
+
- name: Install latest bundler
|
65
|
+
run: gem install bundler --no-document
|
66
|
+
- name: Install Diffend plugin
|
67
|
+
run: bundle plugin install diffend
|
68
|
+
- name: Bundle Secure
|
69
|
+
run: bundle secure
|
70
|
+
|
49
71
|
coditsu:
|
50
72
|
runs-on: ubuntu-latest
|
51
73
|
strategy:
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
## [Unreleased][master]
|
4
4
|
|
5
|
+
## [0.2.39] (2021-01-18)
|
6
|
+
- handle a case if we start to fast and some gems require things it may break the execution ([#101](https://github.com/diffend-io/diffend-ruby/pull/101))
|
7
|
+
|
5
8
|
## [0.2.38] (2021-01-15)
|
6
9
|
- allow executing `bundle secure` without plugin being present in the Gemfile ([#96](https://github.com/diffend-io/diffend-ruby/pull/96))
|
7
10
|
- be explicit about `Bundler` scope ([#97](https://github.com/diffend-io/diffend-ruby/pull/97))
|
@@ -119,7 +122,8 @@
|
|
119
122
|
|
120
123
|
- initial release
|
121
124
|
|
122
|
-
[master]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.
|
125
|
+
[master]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.39...HEAD
|
126
|
+
[0.2.39]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.38...v0.2.39
|
123
127
|
[0.2.38]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.37...v0.2.38
|
124
128
|
[0.2.37]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.36...v0.2.37
|
125
129
|
[0.2.36]: https://github.com/diffend-io/diffend-ruby/compare/v0.2.35...v0.2.36
|
data/Gemfile.lock
CHANGED
data/lib/diffend/monitor.rb
CHANGED
@@ -39,6 +39,10 @@ Thread.new do
|
|
39
39
|
config = nil
|
40
40
|
retry_count = 0
|
41
41
|
|
42
|
+
# There is an issue if we start to fast and there are gems that require things,
|
43
|
+
# it may break the execution. That's why we want to give the application time to boot.
|
44
|
+
sleep(0.5)
|
45
|
+
|
42
46
|
loop do
|
43
47
|
config = Diffend::Config.new(
|
44
48
|
command: Diffend::Commands::EXEC,
|
data/lib/diffend/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diffend-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.39
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomasz Pajor
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
34
34
|
9MmF6uCQa1EjK2p8tYT0MnbHrFkoehxdX4VO9y99GAkhZyJNKPYPtyAUFV27sT2V
|
35
35
|
LfCJRk4ifKIN/FUCwDSn8Cz0m6oH265q0p6wdzI6qrWOjP8tGOMBTA==
|
36
36
|
-----END CERTIFICATE-----
|
37
|
-
date: 2021-01-
|
37
|
+
date: 2021-01-18 00:00:00.000000000 Z
|
38
38
|
dependencies:
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: bundler
|
metadata.gz.sig
CHANGED
Binary file
|