envlogic 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08c2acbeae744c0521c7491d6ba0fbca3ea043a5e2b760476b458cbe080db1d3'
4
- data.tar.gz: 48f10678ddc1485c077773a10d84523a9fefb60b89a12662a3f4c7c4c1a730d2
3
+ metadata.gz: 1d26a3a39a5a6cc355ca5374d64835643309af0c148e2bd0782707105befddf1
4
+ data.tar.gz: 4a7fc7089647325ce0c96ce1ecc8c6d9f0f04e668384494c2bc982435e715a4c
5
5
  SHA512:
6
- metadata.gz: f87f9bd6da65a3f0ad7a81608e2f6648d502eb798b506991d00502dfe24e57f8fa5c8eb2bb89a37bf7e57178f42b401904c7f4bfa3e8af8c0547a8952559ddae
7
- data.tar.gz: 8afebeefddec38700e03c57fe1487e2b3846aea7c7a4eb27307ad8c71ffd0e2809bf3de1ad0a6012ee072add5b7bf2a868df0ea98d3af3bbb0dcf155fe74c916
6
+ metadata.gz: 1f86e9a4efa11c255fb4ade1c3f706b3dfc6191eac33c53892de4e4ae7f00e70ac1f7d5b3ce71621c53a0e6c419c70c4aac268e5220d4a5f2ba047dae7458466
7
+ data.tar.gz: 3a7520b04108e16fa594f6dbdd8ed52395f9d0fb4367b0cf11808de7a61739f7f8e68153044688a14c4c866260e9555b421e37f13645628226d218d696a309e8
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,5 +1,7 @@
1
1
  name: ci
2
2
 
3
+ concurrency: ci-${{ github.ref }}
4
+
3
5
  on:
4
6
  pull_request:
5
7
  push:
@@ -14,13 +16,11 @@ jobs:
14
16
  fail-fast: false
15
17
  matrix:
16
18
  ruby:
19
+ - '3.1'
17
20
  - '3.0'
18
21
  - '2.7'
19
- - '2.6'
20
- - 'truffleruby'
21
- - 'jruby-9.3.1.0'
22
22
  include:
23
- - ruby: '3.0'
23
+ - ruby: '3.1'
24
24
  coverage: 'true'
25
25
  steps:
26
26
  - uses: actions/checkout@v2
@@ -52,7 +52,7 @@ jobs:
52
52
  - name: Set up Ruby
53
53
  uses: ruby/setup-ruby@v1
54
54
  with:
55
- ruby-version: 3.0
55
+ ruby-version: 3.1
56
56
  - name: Install latest bundler
57
57
  run: gem install bundler --no-document
58
58
  - name: Install Diffend plugin
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.3
1
+ 3.1.0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Envlogic gem changelog
2
2
 
3
+ ## 1.1.5 (2022-04-17)
4
+ - Support for Ruby 3.1
5
+ - Drop support for ruby 2.6
6
+ - Add `rubygems_mfa_required`
7
+
3
8
  ## 1.1.4 (2021-12-05)
4
9
  - drop JRuby support because the latest version is based on Ruby 2.5
5
10
  - Source code metadata url added to the gemspec
data/Gemfile.lock CHANGED
@@ -1,37 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- envlogic (1.1.4)
4
+ envlogic (1.1.5)
5
5
  dry-inflector (~> 0.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- diff-lcs (1.4.4)
10
+ diff-lcs (1.5.0)
11
11
  docile (1.4.0)
12
12
  dry-inflector (0.2.1)
13
13
  rake (13.0.6)
14
- rspec (3.10.0)
15
- rspec-core (~> 3.10.0)
16
- rspec-expectations (~> 3.10.0)
17
- rspec-mocks (~> 3.10.0)
18
- rspec-core (3.10.1)
19
- rspec-support (~> 3.10.0)
20
- rspec-expectations (3.10.1)
14
+ rspec (3.11.0)
15
+ rspec-core (~> 3.11.0)
16
+ rspec-expectations (~> 3.11.0)
17
+ rspec-mocks (~> 3.11.0)
18
+ rspec-core (3.11.0)
19
+ rspec-support (~> 3.11.0)
20
+ rspec-expectations (3.11.0)
21
21
  diff-lcs (>= 1.2.0, < 2.0)
22
- rspec-support (~> 3.10.0)
23
- rspec-mocks (3.10.2)
22
+ rspec-support (~> 3.11.0)
23
+ rspec-mocks (3.11.1)
24
24
  diff-lcs (>= 1.2.0, < 2.0)
25
- rspec-support (~> 3.10.0)
26
- rspec-support (3.10.3)
25
+ rspec-support (~> 3.11.0)
26
+ rspec-support (3.11.0)
27
27
  simplecov (0.21.2)
28
28
  docile (~> 1.1)
29
29
  simplecov-html (~> 0.11)
30
30
  simplecov_json_formatter (~> 0.1)
31
31
  simplecov-html (0.12.3)
32
- simplecov_json_formatter (0.1.3)
32
+ simplecov_json_formatter (0.1.4)
33
33
 
34
34
  PLATFORMS
35
+ arm64-darwin-21
36
+ x86_64-darwin
35
37
  x86_64-linux
36
38
 
37
39
  DEPENDENCIES
@@ -41,4 +43,4 @@ DEPENDENCIES
41
43
  simplecov
42
44
 
43
45
  BUNDLED WITH
44
- 2.2.32
46
+ 2.3.11
data/envlogic.gemspec CHANGED
@@ -17,7 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.license = 'MIT'
18
18
 
19
19
  spec.add_dependency 'dry-inflector', '~> 0.1'
20
- spec.required_ruby_version = '>= 2.5.0'
20
+
21
+ spec.required_ruby_version = '>= 2.7'
21
22
 
22
23
  if $PROGRAM_NAME.end_with?('gem')
23
24
  spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
@@ -27,5 +28,9 @@ Gem::Specification.new do |spec|
27
28
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
28
29
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
29
30
  spec.require_paths = %w[lib]
30
- spec.metadata = { 'source_code_uri' => 'https://github.com/karafka/envlogic' }
31
+
32
+ spec.metadata = {
33
+ 'source_code_uri' => 'https://github.com/karafka/envlogic',
34
+ 'rubygems_mfa_required' => 'true'
35
+ }
31
36
  end
@@ -3,5 +3,5 @@
3
3
  # Main module to encapsulate logic
4
4
  module Envlogic
5
5
  # Current version of gem
6
- VERSION = '1.1.4'
6
+ VERSION = '1.1.5'
7
7
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: envlogic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.4
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - pavlo_vavruk
@@ -35,7 +35,7 @@ cert_chain:
35
35
  R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
36
36
  pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
37
37
  -----END CERTIFICATE-----
38
- date: 2021-12-05 00:00:00.000000000 Z
38
+ date: 2022-04-17 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: dry-inflector
@@ -82,6 +82,7 @@ licenses:
82
82
  - MIT
83
83
  metadata:
84
84
  source_code_uri: https://github.com/karafka/envlogic
85
+ rubygems_mfa_required: 'true'
85
86
  post_install_message:
86
87
  rdoc_options: []
87
88
  require_paths:
@@ -90,14 +91,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
91
  requirements:
91
92
  - - ">="
92
93
  - !ruby/object:Gem::Version
93
- version: 2.5.0
94
+ version: '2.7'
94
95
  required_rubygems_version: !ruby/object:Gem::Requirement
95
96
  requirements:
96
97
  - - ">="
97
98
  - !ruby/object:Gem::Version
98
99
  version: '0'
99
100
  requirements: []
100
- rubygems_version: 3.2.32
101
+ rubygems_version: 3.3.3
101
102
  signing_key:
102
103
  specification_version: 4
103
104
  summary: Library which allows to set and get environments values
metadata.gz.sig CHANGED
Binary file