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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d40fd27379146f00e48ffe806b1de31df72e3ad6149089fb9f2e5f08564a22a
4
- data.tar.gz: 1c150083253cfa064aec3b05144c8b10e588d4a113bdfa1b17f897b87b8ff552
3
+ metadata.gz: '09b66c3bff16cecbd0d5acde7bea3c4bd5ddefaf29be8570adc424373b044430'
4
+ data.tar.gz: 506f0259c68e54cb96df9bcd67c4fef04672943b5079ac8880de9e58ef193142
5
5
  SHA512:
6
- metadata.gz: 640a21c444cc3f90ddbf518f96b57d4b065534e77fb2ae07ac8b8661f2c10187c35685afa41f021e28a8a1d467cd03a06a00358b10809e4e8bf96d1c6e9b3e8d
7
- data.tar.gz: e119908d501e8592d31986a5bbb8298a3ff74fe1a24a86d14fb89e52e92dc7e292b4ddfba01726f432b0d7d75e34f15dbbed10b109db2f5c0376418834a840a0
6
+ metadata.gz: 90d2813190a835ab58b5fa1fad9fec2befcf3510685aad39c967ae67c2416c576e660610f2124e3f10300e39c4b15ad8fe0c8340240aecf782a98c1e66d5ecc2
7
+ data.tar.gz: f904e536c19c9b3f08f33fe489029db6d880b3a324e1547c349c488ca3779446f20ec75843d4421e01de669b97470937d1f34bf872e54d107e48c4e5e59bd940
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
1
  # ~/.gitignore included
2
2
 
3
- *.log
3
+ **/*.gem
4
+ **/*.lock
5
+ **/*.log
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- confi (0.1.2)
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.0)
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.2.1)
25
+ rake (13.3.0)
26
26
  regexp_parser (2.10.0)
27
27
  ricecream (0.2.1)
28
- rubocop (1.75.7)
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.44.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
- [![Gem Version](https://badge.fury.io/rb/confi.svg)](http://badge.fury.io/rb/confi)
4
- [![GEM Downloads](https://img.shields.io/gem/dt/confi?color=168AFE&logo=ruby&logoColor=FE1616)](https://rubygems.org/gems/confi)
5
- [![rake](https://github.com/matique/confi/actions/workflows/rake.yml/badge.svg)](https://github.com/matique/confi/actions/workflows/rake.yml)
6
- [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/standardrb/standard)
7
- [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)
3
+ [![Gem Version](https://img.shields.io/gem/v/confi?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/confi)
4
+ [![Downloads](https://img.shields.io/gem/dt/confi?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/confi)
5
+ [![GitHub Build](https://img.shields.io/github/actions/workflow/status/matique/confi/rake.yml?logo=github)](https://github.com/matique/confi/actions/workflows/rake.yml)
6
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-168AFE.svg)](https://github.com/standardrb/standard)
7
+ [![MIT License](https://img.shields.io/badge/license-MIT-168AFE.svg)](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.2"
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.2
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: dittmar.krall@gmail.com
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
File without changes