fat_config 0.4.1 → 0.4.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/.rubocop.yml +0 -5
- data/lib/fat_config/core_ext/hash_ext.rb +1 -1
- data/lib/fat_config/styles/ini_style.rb +1 -1
- data/lib/fat_config/version.rb +1 -1
- data/lib/fat_config.rb +1 -0
- data/rubocop-global.yml +4 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5ef666d4760076d376efd8af772b85dd67dc15712ef31ff4b75785084ee54d4
|
4
|
+
data.tar.gz: bf2cf2d2dd2b1dfed14e11e36765036f2098297190755ca20036f49c0057b435
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a7926e8928f21508332d232e1dc76c7759f32aa12e8fb1b58f291026d67a9d3d2f9eb4e10d1e4ebf11d27c1b52e4fbe85b7b0ac04381496fd1f4cbdfeb43ed2
|
7
|
+
data.tar.gz: 19ac9abbed663c134ba2206923870feed023b98af5f166d97914e1cc3ba0df124018929429075de34b812e6c6177b581b8261c1a95e92268f61708c08b319b07
|
data/.rubocop.yml
CHANGED
@@ -3,7 +3,7 @@ module FatConfig
|
|
3
3
|
def load_string(str)
|
4
4
|
# Since INIFile does not have a method for parsing strings, we have to
|
5
5
|
# create a file with the string as content.
|
6
|
-
tmp_path =
|
6
|
+
tmp_path = Tempfile.create
|
7
7
|
File.write(tmp_path, str)
|
8
8
|
load_file(tmp_path)
|
9
9
|
rescue IniFile::Error => ex
|
data/lib/fat_config/version.rb
CHANGED
data/lib/fat_config.rb
CHANGED
data/rubocop-global.yml
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fat_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel E. Doherty
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: activesupport
|
@@ -29,14 +29,14 @@ dependencies:
|
|
29
29
|
requirements:
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: 5.6.1
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version:
|
39
|
+
version: 5.6.1
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: inifile
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
- !ruby/object:Gem::Version
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
|
-
rubygems_version: 3.6.
|
123
|
+
rubygems_version: 3.6.3
|
124
124
|
specification_version: 4
|
125
125
|
summary: Library to read config from standard XDG or classic locations.
|
126
126
|
test_files: []
|