k_config 0.0.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 +7 -0
- data/.builders/boot.rb +65 -0
- data/.builders/generators/01-bootstrap.rb +125 -0
- data/.githooks/commit-msg +14 -0
- data/.githooks/pre-commit +89 -0
- data/.github/workflows/main.yml +89 -0
- data/.gitignore +46 -0
- data/.releaserc.json +40 -0
- data/.rspec +3 -0
- data/.rubocop.yml +86 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +17 -0
- data/Guardfile +30 -0
- data/LICENSE.txt +21 -0
- data/README.md +82 -0
- data/Rakefile +34 -0
- data/bin/console +16 -0
- data/bin/setup +11 -0
- data/docs/CODE_OF_CONDUCT.md +74 -0
- data/docs/LICENSE.txt +21 -0
- data/k_config.gemspec +47 -0
- data/lib/k_config/version.rb +5 -0
- data/lib/k_config.rb +17 -0
- data/package-lock.json +10688 -0
- data/package.json +14 -0
- data/sig/k_config.rbs +4 -0
- metadata +84 -0
data/package.json
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"name": "k_config",
|
3
|
+
"version": "0.0.2",
|
4
|
+
"description": "Command line and CI/CD tools for K Config",
|
5
|
+
"scripts": {
|
6
|
+
"release": "semantic-release"
|
7
|
+
},
|
8
|
+
"devDependencies": {
|
9
|
+
"@klueless-js/semantic-release-rubygem": "github:klueless-js/semantic-release-rubygem",
|
10
|
+
"@semantic-release/changelog": "^6.0.1",
|
11
|
+
"@semantic-release/git": "^10.0.1",
|
12
|
+
"semantic-release": "^19.0.2"
|
13
|
+
}
|
14
|
+
}
|
data/sig/k_config.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: k_config
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David Cruwys
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: k_log
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.0.0
|
27
|
+
description: " KConfig provides configuration for multi-plugin architecture\n"
|
28
|
+
email:
|
29
|
+
- david@ideasmen.com.au
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".builders/boot.rb"
|
35
|
+
- ".builders/generators/01-bootstrap.rb"
|
36
|
+
- ".githooks/commit-msg"
|
37
|
+
- ".githooks/pre-commit"
|
38
|
+
- ".github/workflows/main.yml"
|
39
|
+
- ".gitignore"
|
40
|
+
- ".releaserc.json"
|
41
|
+
- ".rspec"
|
42
|
+
- ".rubocop.yml"
|
43
|
+
- CHANGELOG.md
|
44
|
+
- CODE_OF_CONDUCT.md
|
45
|
+
- Gemfile
|
46
|
+
- Guardfile
|
47
|
+
- LICENSE.txt
|
48
|
+
- README.md
|
49
|
+
- Rakefile
|
50
|
+
- bin/console
|
51
|
+
- bin/setup
|
52
|
+
- docs/CODE_OF_CONDUCT.md
|
53
|
+
- docs/LICENSE.txt
|
54
|
+
- k_config.gemspec
|
55
|
+
- lib/k_config.rb
|
56
|
+
- lib/k_config/version.rb
|
57
|
+
- package-lock.json
|
58
|
+
- package.json
|
59
|
+
- sig/k_config.rbs
|
60
|
+
homepage: http://appydave.com/gems/k_config
|
61
|
+
licenses:
|
62
|
+
- MIT
|
63
|
+
metadata:
|
64
|
+
rubygems_mfa_required: 'true'
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '2.7'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
79
|
+
requirements: []
|
80
|
+
rubygems_version: 3.1.2
|
81
|
+
signing_key:
|
82
|
+
specification_version: 4
|
83
|
+
summary: KConfig provides configuration for multi-plugin architecture
|
84
|
+
test_files: []
|