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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b6d8777cb97c4f2de9b0586089b47f4a2aa27318179f920695a27bc06827af2
4
- data.tar.gz: 3ad5dd305f8ab4f75eda0ad714850e0f1ef99c14c14ca891204e7a517563557d
3
+ metadata.gz: f8f29b83a1d3a103368e818adc5ab6ca2eaa3773d505bad3e54b01d8c876b3a0
4
+ data.tar.gz: '079bb9df829a8a899b7597500d418996b2eeb6bfd08db102b459f1cc4c7aa736'
5
5
  SHA512:
6
- metadata.gz: f41892256c646110e5c53d4de461dd22770abb9ef2c13e613df1eeff1ae2fc9f68b7155f8cafd7abdb751052b5c752b8e918c8f2858a847d4f8758d0742fa36a
7
- data.tar.gz: 24a5afc264bcaa53377a0a67deb12d74b9fb83c015ed6fafb7373534500937fce2c3d657df2f77ab388e549bc46c0ef1f260a3385cf47758ea77aa3e9c36caa0
6
+ metadata.gz: e91cf5b4a235a67fc80b10004e4462bd24a4b19aeeab7faa2567d8565742c9cdec814c2596d074f071ca0b8943f7b03a024059462ababaabe27b9507631722d6
7
+ data.tar.gz: 3a2767e972218340d31d1b845322090741c6694e632ae13fe3c4f88c5812871ae460e816f190efc62b2f7175689200efbc70aa460ed35382b7ace65f00dfb44f
data/CHANGELOG.md CHANGED
@@ -1,20 +1,35 @@
1
1
  # Changelog
2
2
 
3
- ## v1.0.1-20220530 - [Danilo Carolino](@danilogco)
3
+ All notable changes to this project will be documented in this file.
4
4
 
5
- Fixes
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
- * Avoid to crash the Rails application when there is an error
8
- parsing a variable <https://github.com/dcotecnologia/confset/pull/5>
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
- ## v1.0.0-20220527 - [Danilo Carolino](@danilogco)
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
- Initial release
26
+ ## [1.0.0] - 2022-05-27
13
27
 
14
- Build
28
+ ### Added
15
29
 
16
- Refac the project focusing on the newer versions of the Ruby
17
- language and Ruby on Rails.
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
  [![Downloads Total](https://img.shields.io/gem/dt/confset)](https://rubygems.org/gems/confset)
5
5
  [![Build](https://github.com/dcotecnologia/confset/actions/workflows/tests.yml/badge.svg)](https://github.com/dcotecnologia/confset/actions/workflows/tests.yml)
6
6
  [![CodeQL](https://github.com/dcotecnologia/confset/actions/workflows/codeql.yml/badge.svg)](https://github.com/dcotecnologia/confset/actions/workflows/codeql.yml)
7
- [![Release](https://github.com/dcotecnologia/confset/actions/workflows/release.yml/badge.svg)](https://github.com/dcotecnologia/confset/actions/workflows/release.yml)
7
+ [![Release](https://github.com/dcotecnologia/confset/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/dcotecnologia/confset/actions/workflows/release.yml)
8
8
 
9
9
  ## Summary
10
10
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Confset
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
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.1
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-05-30 00:00:00.000000000 Z
14
+ date: 2022-06-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: deep_merge