confi 0.1.2 → 0.1.3
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/.gitignore +3 -1
- data/Gemfile.lock +5 -5
- data/README.md +19 -14
- data/confi.gemspec +4 -2
- metadata +5 -3
- /data/{LICENSE → MIT-LICENSE} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09b66c3bff16cecbd0d5acde7bea3c4bd5ddefaf29be8570adc424373b044430'
|
|
4
|
+
data.tar.gz: 506f0259c68e54cb96df9bcd67c4fef04672943b5079ac8880de9e58ef193142
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90d2813190a835ab58b5fa1fad9fec2befcf3510685aad39c967ae67c2416c576e660610f2124e3f10300e39c4b15ad8fe0c8340240aecf782a98c1e66d5ecc2
|
|
7
|
+
data.tar.gz: f904e536c19c9b3f08f33fe489029db6d880b3a324e1547c349c488ca3779446f20ec75843d4421e01de669b97470937d1f34bf872e54d107e48c4e5e59bd940
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
confi (0.1.
|
|
4
|
+
confi (0.1.3)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
9
|
ast (2.4.3)
|
|
10
|
-
benchmark (0.4.
|
|
10
|
+
benchmark (0.4.1)
|
|
11
11
|
benchmark-ips (2.14.0)
|
|
12
12
|
byebug (12.0.0)
|
|
13
13
|
docile (1.4.1)
|
|
@@ -22,10 +22,10 @@ GEM
|
|
|
22
22
|
prism (1.4.0)
|
|
23
23
|
racc (1.8.1)
|
|
24
24
|
rainbow (3.1.1)
|
|
25
|
-
rake (13.
|
|
25
|
+
rake (13.3.0)
|
|
26
26
|
regexp_parser (2.10.0)
|
|
27
27
|
ricecream (0.2.1)
|
|
28
|
-
rubocop (1.75.
|
|
28
|
+
rubocop (1.75.8)
|
|
29
29
|
json (~> 2.3)
|
|
30
30
|
language_server-protocol (~> 3.17.0.2)
|
|
31
31
|
lint_roller (~> 1.1.0)
|
|
@@ -36,7 +36,7 @@ GEM
|
|
|
36
36
|
rubocop-ast (>= 1.44.0, < 2.0)
|
|
37
37
|
ruby-progressbar (~> 1.7)
|
|
38
38
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
39
|
-
rubocop-ast (1.
|
|
39
|
+
rubocop-ast (1.45.1)
|
|
40
40
|
parser (>= 3.3.7.2)
|
|
41
41
|
prism (~> 1.4)
|
|
42
42
|
rubocop-performance (1.25.0)
|
data/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Confi
|
|
2
2
|
|
|
3
|
-
[](https://rubygems.org/gems/confi)
|
|
4
|
+
[](https://rubygems.org/gems/confi)
|
|
5
|
+
[](https://github.com/matique/confi/actions/workflows/rake.yml)
|
|
6
|
+
[](https://github.com/standardrb/standard)
|
|
7
|
+
[](http://choosealicense.com/licenses/mit/)
|
|
8
8
|
|
|
9
9
|
A simple and efficient "configuration" gem for Ruby
|
|
10
10
|
(can be used in Rails as well).
|
|
@@ -17,15 +17,6 @@ are supported.
|
|
|
17
17
|
See *Usage* below.
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
## Installation
|
|
21
|
-
|
|
22
|
-
~~~~ruby
|
|
23
|
-
# Gemfile
|
|
24
|
-
...
|
|
25
|
-
gem "confi"
|
|
26
|
-
...
|
|
27
|
-
~~~~
|
|
28
|
-
|
|
29
20
|
## Usage (global Confi)
|
|
30
21
|
|
|
31
22
|
~~~~ruby
|
|
@@ -81,6 +72,20 @@ end
|
|
|
81
72
|
~~~~
|
|
82
73
|
|
|
83
74
|
|
|
75
|
+
## Installation
|
|
76
|
+
|
|
77
|
+
As usual:
|
|
78
|
+
|
|
79
|
+
~~~~ruby
|
|
80
|
+
# Gemfile
|
|
81
|
+
...
|
|
82
|
+
gem "confi"
|
|
83
|
+
...
|
|
84
|
+
~~~~
|
|
85
|
+
|
|
86
|
+
and run "bundle install".
|
|
87
|
+
|
|
88
|
+
|
|
84
89
|
## Miscellaneous
|
|
85
90
|
|
|
86
91
|
Copyright (c) 2025 Dittmar Krall (www.matiq.com),
|
data/confi.gemspec
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# $LOAD_PATH.push File.expand_path("lib", __dir__)
|
|
2
2
|
|
|
3
|
-
VERSION = "0.1.
|
|
3
|
+
VERSION = "0.1.3" # 2015-06-22
|
|
4
|
+
# VERSION = "0.1.2"
|
|
4
5
|
|
|
5
6
|
Gem::Specification.new do |s|
|
|
6
7
|
s.name = "confi"
|
|
@@ -9,9 +10,10 @@ Gem::Specification.new do |s|
|
|
|
9
10
|
s.description = s.summary
|
|
10
11
|
|
|
11
12
|
s.authors = ["Dittmar Krall"]
|
|
12
|
-
s.email = "dittmar.krall@gmail.com"
|
|
13
|
+
s.email = ["dittmar.krall@matiq.com", "dittmar.krall@gmail.com"]
|
|
13
14
|
s.homepage = "https://github.com/matique/confi"
|
|
14
15
|
s.license = "MIT"
|
|
16
|
+
s.platform = Gem::Platform::RUBY
|
|
15
17
|
|
|
16
18
|
s.files = `git ls-files`.split("\n")
|
|
17
19
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: confi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
@@ -38,7 +38,9 @@ dependencies:
|
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '0'
|
|
40
40
|
description: Auto attr_accessor for a kind of configuration
|
|
41
|
-
email:
|
|
41
|
+
email:
|
|
42
|
+
- dittmar.krall@matiq.com
|
|
43
|
+
- dittmar.krall@gmail.com
|
|
42
44
|
executables: []
|
|
43
45
|
extensions: []
|
|
44
46
|
extra_rdoc_files: []
|
|
@@ -51,7 +53,7 @@ files:
|
|
|
51
53
|
- BENCHMARKS
|
|
52
54
|
- Gemfile
|
|
53
55
|
- Gemfile.lock
|
|
54
|
-
- LICENSE
|
|
56
|
+
- MIT-LICENSE
|
|
55
57
|
- README.md
|
|
56
58
|
- Rakefile
|
|
57
59
|
- confi.gemspec
|
/data/{LICENSE → MIT-LICENSE}
RENAMED
|
File without changes
|