obscured-heartbeat 1.0.0 → 1.0.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/.github/dependabot.yml +11 -0
- data/.github/workflows/{gem-push.yml → publish.yml} +3 -2
- data/Gemfile.lock +3 -3
- data/lib/obscured-heartbeat/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9461ef05c0846aa122ef660a4d7130c70d757bd772eb7cb865d8e6bdc0aa3168
|
|
4
|
+
data.tar.gz: de060727420cb774bc5b4607592a8885fc0dadf4cce3405434faf2f4100245dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c35f8db94a19543d91cf9cb2085a33edf0bc82eb7707548c2cd4b6583b6f17ddacb585f7dc245e4187adf3fa72160bc095faf01ca8dc83add803b7274a4f7ce
|
|
7
|
+
data.tar.gz: 43b1774680820638bedde2d6f515acf9eb1c5bd82ac458089a1144986cc0f3afe5d130beb890e18e6744302b7b68f5e696a3f4c259657a85e9fa9165b4c5b8ea
|
|
@@ -13,10 +13,11 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- uses: actions/checkout@v2
|
|
16
|
-
- name: Set up Ruby 2.
|
|
16
|
+
- name: Set up Ruby 2.7
|
|
17
17
|
uses: actions/setup-ruby@v1
|
|
18
18
|
with:
|
|
19
|
-
ruby-version: 2.
|
|
19
|
+
ruby-version: 2.7.x
|
|
20
|
+
|
|
20
21
|
- name: Publish to RubyGems
|
|
21
22
|
run: |
|
|
22
23
|
mkdir -p $HOME/.gem
|
data/Gemfile.lock
CHANGED
|
@@ -9,9 +9,9 @@ PATH
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: http://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
activemodel (6.1.3)
|
|
13
|
-
activesupport (= 6.1.3)
|
|
14
|
-
activesupport (6.1.3)
|
|
12
|
+
activemodel (6.1.3.1)
|
|
13
|
+
activesupport (= 6.1.3.1)
|
|
14
|
+
activesupport (6.1.3.1)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
16
|
i18n (>= 1.6, < 2)
|
|
17
17
|
minitest (>= 5.1)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: obscured-heartbeat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erik Hennerfors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -102,7 +102,8 @@ extensions: []
|
|
|
102
102
|
extra_rdoc_files: []
|
|
103
103
|
files:
|
|
104
104
|
- ".codeclimate.yml"
|
|
105
|
-
- ".github/
|
|
105
|
+
- ".github/dependabot.yml"
|
|
106
|
+
- ".github/workflows/publish.yml"
|
|
106
107
|
- ".gitignore"
|
|
107
108
|
- ".rubocop.yml"
|
|
108
109
|
- ".ruby-gemset"
|
|
@@ -147,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
147
148
|
- !ruby/object:Gem::Version
|
|
148
149
|
version: '0'
|
|
149
150
|
requirements: []
|
|
150
|
-
rubygems_version: 3.
|
|
151
|
+
rubygems_version: 3.1.6
|
|
151
152
|
signing_key:
|
|
152
153
|
specification_version: 4
|
|
153
154
|
summary: Default database heartbeat ability
|