anyway_config 2.7.1 → 2.7.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: c6e808e00b7756aa1b22f20792dfcfbc5989c5f41a88ae5b16e87ee3e556b17d
4
- data.tar.gz: ef819a44f7ac000f206929dbb412f778130bb40b240c45478e548c582a7b52f9
3
+ metadata.gz: b4687cf9a7a8ee20387726a47452a2e2b204742096d7070885f176e53e1fc285
4
+ data.tar.gz: 36dc3777a2cce19788c0e189f740f0dccc708a02bf240a5ded89533e85929f6e
5
5
  SHA512:
6
- metadata.gz: ca3f7f4ad799af0c53b613786a5407fa4d41a937528b12d17b69f466f3a7152a3b89e61cbcd4112f9bfd69b26089d3223eb85ba68859f9173997636ff04626a6
7
- data.tar.gz: '00762802a9a92438cfd3ef29681eebaad657a81ddda44a06799c39c4f024d3975458b3380b8ef7b97611d9d561476a7fab386aa636aaa0a6712491790a583919'
6
+ metadata.gz: bf601ef44033901a08350ba687b0d9f7ad112160b3cc6a6058168fe44e7093ef6cf1e28c382feb7c70fd0177b27b2d79cf893bf93a1ccb9b61143624ebd49f32
7
+ data.tar.gz: af6505ce86371203fb4e1744123191904b99b837892ff6b79fd722f051ed1f2b01fcbb0075bcb92f0e20ff07cea56597262987145dea1ba20d36732b99ae4059
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 2.7.2 (2025-04-01)
6
+
7
+ - Address NameError: instance variable @secrets not defined issue ([@fbuys][])
8
+
5
9
  ## 2.7.1 (2025-02-24)
6
10
 
7
11
  - Suppress required validations when running Rails credentials commands. ([@palkan][])
@@ -28,6 +28,11 @@ module Anyway
28
28
  # Reset secrets state if the app hasn't been initialized
29
29
  # See https://github.com/palkan/anyway_config/issues/14
30
30
  next if ::Rails.application.initialized?
31
+
32
+ # Address unable to load application: NameError: instance variable @secrets
33
+ # not defined
34
+ next unless ::Rails.application.instance_variable_defined?(:@secrets)
35
+
31
36
  ::Rails.application.remove_instance_variable(:@secrets)
32
37
  end
33
38
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Anyway # :nodoc:
4
- VERSION = "2.7.1"
4
+ VERSION = "2.7.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anyway_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-25 00:00:00.000000000 Z
11
+ date: 2025-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-next-core