appydave-tools 0.3.1 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09003bdfd4899328767437ec22a7bdd7cfd1b9189577f85f456acfaad20b0139'
4
- data.tar.gz: 9756b51db5c99b451dcd73369c490ac0105b09efa3eaedd335adaa8fdd62a345
3
+ metadata.gz: b3a84090fe26e9b28b2947af82cf7647f6f6bcbf3e0b0f0bd8cbcfddb9513c1a
4
+ data.tar.gz: 8cf4b4251ef2eff3fe897fa0ec545ffbf18f18f48700dea1978072ece796520a
5
5
  SHA512:
6
- metadata.gz: fcc9d6983c76063bd4c26546ceefae814c8eaf704b098a36bdb5b6dc112394c8f9f0eb595df78fdf3e66d6a2b026f4b50687acf157fc5e951c7b512d64ad9da4
7
- data.tar.gz: 557b0bd08e184cc23d16820a0ac65746307c560621e998c69c2f78dcc3ab08b1fff3a302bca4207b2fad6b9c6c8efb28260b360e6cb0b80e13d7cd5b358d6533
6
+ metadata.gz: bf89c55719c8d05e1a49d695945675c3163d2715c76453ffb5c14ee00a70814df164fce00a2aded2d131f6e69fd09611d9ce7c1662bd419e483c6f00c6e4c75b
7
+ data.tar.gz: 5382b10ff12234a3d0a1fafc901a035342c89f7d7ed233656a6a75f5185f52f1a4ab42cd00b6cfb955a2a1677123864e3a96b2e85d6645c56e090953df2741c4
data/.rubocop.yml CHANGED
@@ -109,3 +109,5 @@ RSpec/NamedSubject:
109
109
  RSpec/MultipleExpectations:
110
110
  Max: 5
111
111
 
112
+ RSpec/NestedGroups:
113
+ Max: 8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.3.1](https://github.com/klueless-io/appydave-tools/compare/v0.3.0...v0.3.1) (2024-05-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add settings config to configuration component ([2c8afd1](https://github.com/klueless-io/appydave-tools/commit/2c8afd164fd6aa00fa47a01c9007c784a8adf820))
7
+
1
8
  # [0.3.0](https://github.com/klueless-io/appydave-tools/compare/v0.2.0...v0.3.0) (2024-05-16)
2
9
 
3
10
 
@@ -16,7 +16,7 @@ module Appydave
16
16
 
17
17
  def register(key, klass)
18
18
  @configurations ||= {}
19
- @configurations[key] = klass.new(config_base_path: config_path)
19
+ @configurations[key] = klass.new
20
20
  end
21
21
 
22
22
  def method_missing(method_name, *args, &block)
@@ -10,7 +10,7 @@ module Appydave
10
10
  class ConfigBase
11
11
  attr_reader :config_path, :data
12
12
 
13
- def initialize(config_name)
13
+ def initialize(config_name = 'unknown')
14
14
  @config_path = File.join(Config.config_path, "#{config_name}.json")
15
15
  @data = load
16
16
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Appydave
4
4
  module Tools
5
- VERSION = '0.3.1'
5
+ VERSION = '0.3.2'
6
6
  end
7
7
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appydave-tools",
9
- "version": "0.3.1",
9
+ "version": "0.3.2",
10
10
  "devDependencies": {
11
11
  "@klueless-js/semantic-release-rubygem": "github:klueless-js/semantic-release-rubygem",
12
12
  "@semantic-release/changelog": "^6.0.3",
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appydave-tools",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "AppyDave YouTube Automation Tools",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appydave-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys