endpoint-flux2 1.1.7 → 1.1.8
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/gem-push.yml +12 -0
- data/Gemfile.lock +12 -14
- data/endpoint_flux.gemspec +1 -0
- data/lib/endpoint_flux/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e44414dc026b9c8af420c4c2679a83875c7fa5a9424598d0fefadbfd03af240
|
|
4
|
+
data.tar.gz: 3c2c0748051a9117baffb717594d6b52e8feb9e2e86be08e9a40cdfdc4f30d24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 282f51cb1716dbeab519ddfaf8d020c66e179230c73a6c84ceb992f6bb24650c43adc26b4117115712c9b88254f95be6dde7c1b101daba82c7c6b6b37303c4de
|
|
7
|
+
data.tar.gz: 51f1070f4ee9acaa4a1f644308ed4d7a10785b78789f478312d7e84ce98c194c217010a7e90b535a71562810ed2e6c3560c9d6d4a820960f583659ecc35f8f4e
|
|
@@ -18,6 +18,18 @@ jobs:
|
|
|
18
18
|
with:
|
|
19
19
|
ruby-version: 2.6.x
|
|
20
20
|
|
|
21
|
+
- name: Publish to GPR
|
|
22
|
+
run: |
|
|
23
|
+
mkdir -p $HOME/.gem
|
|
24
|
+
touch $HOME/.gem/credentials
|
|
25
|
+
chmod 0600 $HOME/.gem/credentials
|
|
26
|
+
printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
|
27
|
+
gem build *.gemspec
|
|
28
|
+
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
|
|
29
|
+
env:
|
|
30
|
+
GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
|
|
31
|
+
OWNER: ${{ github.repository_owner }}
|
|
32
|
+
|
|
21
33
|
- name: Publish to RubyGems
|
|
22
34
|
run: |
|
|
23
35
|
mkdir -p $HOME/.gem
|
data/Gemfile.lock
CHANGED
|
@@ -1,37 +1,35 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
endpoint-
|
|
4
|
+
endpoint-flux2 (1.1.7)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
byebug (11.1.
|
|
9
|
+
byebug (11.1.3)
|
|
10
10
|
codecov (0.2.11)
|
|
11
11
|
json
|
|
12
12
|
simplecov
|
|
13
|
-
|
|
14
|
-
diff-lcs (1.3)
|
|
13
|
+
diff-lcs (1.4.4)
|
|
15
14
|
docile (1.3.2)
|
|
16
|
-
json (2.3.
|
|
15
|
+
json (2.3.1)
|
|
17
16
|
rspec (3.9.0)
|
|
18
17
|
rspec-core (~> 3.9.0)
|
|
19
18
|
rspec-expectations (~> 3.9.0)
|
|
20
19
|
rspec-mocks (~> 3.9.0)
|
|
21
|
-
rspec-core (3.9.
|
|
22
|
-
rspec-support (~> 3.9.
|
|
23
|
-
rspec-expectations (3.9.
|
|
20
|
+
rspec-core (3.9.2)
|
|
21
|
+
rspec-support (~> 3.9.3)
|
|
22
|
+
rspec-expectations (3.9.2)
|
|
24
23
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
25
24
|
rspec-support (~> 3.9.0)
|
|
26
25
|
rspec-mocks (3.9.1)
|
|
27
26
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
28
27
|
rspec-support (~> 3.9.0)
|
|
29
|
-
rspec-support (3.9.
|
|
30
|
-
simplecov (0.
|
|
28
|
+
rspec-support (3.9.3)
|
|
29
|
+
simplecov (0.19.0)
|
|
31
30
|
docile (~> 1.1)
|
|
32
31
|
simplecov-html (~> 0.11)
|
|
33
|
-
simplecov-html (0.12.
|
|
34
|
-
url (0.3.2)
|
|
32
|
+
simplecov-html (0.12.3)
|
|
35
33
|
|
|
36
34
|
PLATFORMS
|
|
37
35
|
ruby
|
|
@@ -39,11 +37,11 @@ PLATFORMS
|
|
|
39
37
|
DEPENDENCIES
|
|
40
38
|
byebug (>= 9.0)
|
|
41
39
|
codecov
|
|
42
|
-
endpoint-
|
|
40
|
+
endpoint-flux2!
|
|
43
41
|
rspec (>= 3.5.0)
|
|
44
42
|
|
|
45
43
|
RUBY VERSION
|
|
46
44
|
ruby 2.5.3p105
|
|
47
45
|
|
|
48
46
|
BUNDLED WITH
|
|
49
|
-
1.
|
|
47
|
+
1.17.3
|
data/endpoint_flux.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.homepage = 'https://github.com/pavelkvasnikov/endpoint-flux'
|
|
13
13
|
s.license = 'MIT'
|
|
14
14
|
s.required_ruby_version = '>= 2.5.3'
|
|
15
|
+
s.metadata = { "github_repo" => "ssh://github.com/pavelkvasnikov/endpoint-flux" }
|
|
15
16
|
|
|
16
17
|
s.add_development_dependency 'byebug', '>= 9.0'
|
|
17
18
|
s.add_development_dependency 'rspec', '>= 3.5.0'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: endpoint-flux2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Original creator Arturs Kreipans https://github.com/fragallia Forked by Pavel Kvasnikov
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-09-
|
|
12
|
+
date: 2020-09-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: byebug
|
|
@@ -153,7 +153,8 @@ files:
|
|
|
153
153
|
homepage: https://github.com/pavelkvasnikov/endpoint-flux
|
|
154
154
|
licenses:
|
|
155
155
|
- MIT
|
|
156
|
-
metadata:
|
|
156
|
+
metadata:
|
|
157
|
+
github_repo: ssh://github.com/pavelkvasnikov/endpoint-flux
|
|
157
158
|
post_install_message:
|
|
158
159
|
rdoc_options: []
|
|
159
160
|
require_paths:
|