gonfic 0.6.2 → 0.6.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/LICENSE.txt +1 -1
- data/lib/gonfic/version.rb +1 -1
- metadata +3 -7
- data/gonfic.gemspec +0 -34
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6ad26346c85a9ae7084d9889d8e5f633f5e0a350ef780054d81012638e32cb5
|
4
|
+
data.tar.gz: 7bff4a1c1c1df7950d81299b449c71049f745fe8158f55e284b9ff0de434989b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3341cf94bb91e9f69b8a667438ffa9639bbcd9e7004d83fc2d0e1d4d7bb028c201007b486b2dc1627b750b275241e2b1f48b567374dbd876835dbe12822c3131
|
7
|
+
data.tar.gz: f6d00634a769200640b62c53a36567c27dd8fa70632b63ce4b0a60db939ba0a7dfeb5a4d8095bfb3931118ab63cf9965dbebc5ff295e142c2d00f9c709a43ad0
|
data/LICENSE.txt
CHANGED
data/lib/gonfic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gonfic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Emil Chludziński
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: hashie
|
@@ -36,7 +35,6 @@ extra_rdoc_files: []
|
|
36
35
|
files:
|
37
36
|
- LICENSE.txt
|
38
37
|
- README.md
|
39
|
-
- gonfic.gemspec
|
40
38
|
- lib/gonfic.rb
|
41
39
|
- lib/gonfic/config.rb
|
42
40
|
- lib/gonfic/directories.rb
|
@@ -49,7 +47,6 @@ metadata:
|
|
49
47
|
homepage_uri: https://gitlab.com/tanstaafl/gonfic
|
50
48
|
source_code_uri: https://gitlab.com/tanstaafl/gonfic
|
51
49
|
rubygems_mfa_required: 'true'
|
52
|
-
post_install_message:
|
53
50
|
rdoc_options: []
|
54
51
|
require_paths:
|
55
52
|
- lib
|
@@ -64,8 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
61
|
- !ruby/object:Gem::Version
|
65
62
|
version: '0'
|
66
63
|
requirements: []
|
67
|
-
rubygems_version: 3.
|
68
|
-
signing_key:
|
64
|
+
rubygems_version: 3.6.2
|
69
65
|
specification_version: 4
|
70
66
|
summary: Gonfic - merge config from ~/, ./, ENV, and OptionParser - access as Hashie::Mash.
|
71
67
|
test_files: []
|
data/gonfic.gemspec
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
require_relative 'lib/gonfic/version'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = 'gonfic'
|
5
|
-
spec.version = Gonfic::VERSION
|
6
|
-
spec.authors = ['Emil Chludziński']
|
7
|
-
spec.email = ['tanstaafl@tlen.pl']
|
8
|
-
|
9
|
-
spec.summary = 'Gonfic - merge config from ~/, ./, ENV, and OptionParser - access as Hashie::Mash.'
|
10
|
-
spec.description = <<~DESCRIPTION
|
11
|
-
Gonfic:
|
12
|
-
Configuration gem for commandline tools.
|
13
|
-
Provides easy access to config, merged from multiple sources in order of specificity.
|
14
|
-
DESCRIPTION
|
15
|
-
spec.homepage = 'https://gitlab.com/tanstaafl/gonfic'
|
16
|
-
spec.license = 'MIT'
|
17
|
-
spec.required_ruby_version = '>= 2.6.0'
|
18
|
-
|
19
|
-
spec.metadata['homepage_uri'] = spec.homepage
|
20
|
-
spec.metadata['source_code_uri'] = spec.homepage
|
21
|
-
spec.metadata['rubygems_mfa_required'] = 'true'
|
22
|
-
|
23
|
-
spec.files = Dir.chdir(__dir__) do
|
24
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
25
|
-
File.expand_path(f) == __FILE__ ||
|
26
|
-
f.start_with?(*%w[bin/ test/ .git .rubocop.yml Gemfile Rakefile])
|
27
|
-
end
|
28
|
-
end
|
29
|
-
spec.bindir = 'exe'
|
30
|
-
spec.executables = spec.files.grep(%r{\Aexe/}){ |f| File.basename(f) }
|
31
|
-
spec.require_paths = ['lib']
|
32
|
-
|
33
|
-
spec.add_dependency 'hashie'
|
34
|
-
end
|