confset 1.0.1 → 1.0.2
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/CHANGELOG.md +24 -9
- data/README.md +1 -1
- data/lib/confset/version.rb +1 -1
- data/lib/confset.rb +1 -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: f8f29b83a1d3a103368e818adc5ab6ca2eaa3773d505bad3e54b01d8c876b3a0
|
|
4
|
+
data.tar.gz: '079bb9df829a8a899b7597500d418996b2eeb6bfd08db102b459f1cc4c7aa736'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e91cf5b4a235a67fc80b10004e4462bd24a4b19aeeab7faa2567d8565742c9cdec814c2596d074f071ca0b8943f7b03a024059462ababaabe27b9507631722d6
|
|
7
|
+
data.tar.gz: 3a2767e972218340d31d1b845322090741c6694e632ae13fe3c4f88c5812871ae460e816f190efc62b2f7175689200efbc70aa460ed35382b7ace65f00dfb44f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [1.0.2] - 2022-06-06
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Only load Railtie integration if Rails::Railtie is defined
|
|
15
|
+
[rubyconfig#31](https://github.com/rubyconfig/config/pull/319) - Thanks to Ufuk
|
|
16
|
+
Kayserilioglu <ufuk.kayserilioglu@shopify.com>
|
|
17
|
+
- CHANGELOG.md pattern changed to the [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
9
18
|
|
|
10
|
-
##
|
|
19
|
+
## [1.0.1] - 2022-05-30
|
|
20
|
+
|
|
21
|
+
### Fixes
|
|
22
|
+
|
|
23
|
+
- Avoid to crash the Rails application when there is an error
|
|
24
|
+
parsing a variable <https://github.com/dcotecnologia/confset/pull/5>
|
|
11
25
|
|
|
12
|
-
|
|
26
|
+
## [1.0.0] - 2022-05-27
|
|
13
27
|
|
|
14
|
-
|
|
28
|
+
### Added
|
|
15
29
|
|
|
16
|
-
|
|
17
|
-
|
|
30
|
+
- Initial release
|
|
31
|
+
- Refac the project focusing on the newer versions of the
|
|
32
|
+
Ruby language and Ruby on Rails.
|
|
18
33
|
|
|
19
34
|
---------------------
|
|
20
35
|
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/confset)
|
|
5
5
|
[](https://github.com/dcotecnologia/confset/actions/workflows/tests.yml)
|
|
6
6
|
[](https://github.com/dcotecnologia/confset/actions/workflows/codeql.yml)
|
|
7
|
-
[](https://github.com/dcotecnologia/confset/actions/workflows/release.yml)
|
|
7
|
+
[](https://github.com/dcotecnologia/confset/actions/workflows/release.yml)
|
|
8
8
|
|
|
9
9
|
## Summary
|
|
10
10
|
|
data/lib/confset/version.rb
CHANGED
data/lib/confset.rb
CHANGED
|
@@ -97,7 +97,7 @@ module Confset
|
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
# Rails integration
|
|
100
|
-
require("confset/integrations/rails/railtie") if defined?(::Rails)
|
|
100
|
+
require("confset/integrations/rails/railtie") if defined?(::Rails::Railtie)
|
|
101
101
|
|
|
102
102
|
# Sinatra integration
|
|
103
103
|
require("confset/integrations/sinatra") if defined?(::Sinatra)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: confset
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Danilo Carolino
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2022-
|
|
14
|
+
date: 2022-06-06 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: deep_merge
|