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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b8810655c20a36c4ae9220d82652bd740f7a9b108f62fa6c34400c39d8af4d0
4
- data.tar.gz: 4202e4993d903c3fe560730ff88e798728617f2db71d92bc9f5de1127ca30888
3
+ metadata.gz: e6ad26346c85a9ae7084d9889d8e5f633f5e0a350ef780054d81012638e32cb5
4
+ data.tar.gz: 7bff4a1c1c1df7950d81299b449c71049f745fe8158f55e284b9ff0de434989b
5
5
  SHA512:
6
- metadata.gz: 4dd9ed806e8982e2be4103930ab51291b3c93c4163f044b5ebbdd63edc72b6bf369d4b2be8c597c5da66a8d83bce4e116171f1021c4238284e54cc6a3f36092b
7
- data.tar.gz: 6828d7979ccc5589531c81d2f4f063fcf5d8511749f97445d58c6a8aff6ce2befa75a808d67f6f1e8db89d843a837cee237a5feb40a981146e9567b9a1473432
6
+ metadata.gz: 3341cf94bb91e9f69b8a667438ffa9639bbcd9e7004d83fc2d0e1d4d7bb028c201007b486b2dc1627b750b275241e2b1f48b567374dbd876835dbe12822c3131
7
+ data.tar.gz: f6d00634a769200640b62c53a36567c27dd8fa70632b63ce4b0a60db939ba0a7dfeb5a4d8095bfb3931118ab63cf9965dbebc5ff295e142c2d00f9c709a43ad0
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 Emil Chludziński
3
+ Copyright (c) 2023-2025 Emil Chludziński
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,3 +1,3 @@
1
1
  module Gonfic
2
- VERSION = '0.6.2'.freeze
2
+ VERSION = '0.6.3'.freeze
3
3
  end
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.2
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: 2023-08-19 00:00:00.000000000 Z
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.4.15
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