glue_gun_dsl 0.1.30 → 0.1.32
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/lib/glue_gun/dsl.rb +2 -2
- data/lib/glue_gun/model.rb +1 -1
- data/lib/glue_gun/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cf32bd978003b64f6829fe0b70c3d11bbb8ef11d3b81726dda32e0c38373c91
|
4
|
+
data.tar.gz: 5425fd7f5759384543ff68db8f5385a1c55bb0a9274307dae86520bbdeb029bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92a949dd966551b2c5ed1364e2535a92c826391a592233b3a646a4957895b848f3f9d02225a50cb0e93b72ef211187f384821f2afc901918153f1004176999fd
|
7
|
+
data.tar.gz: c4f8446ef0d897814eca53d3e65e1143e6ea9cf6e0c9e057f25559abb45210ed36b3940379fd1547d96a503d6a39cf4b3b4c690c9443a3dd8d071fad14df66ac
|
data/lib/glue_gun/dsl.rb
CHANGED
@@ -395,7 +395,7 @@ module GlueGun
|
|
395
395
|
option_name, init_args = determine_option_name(init_args, instance)
|
396
396
|
end
|
397
397
|
|
398
|
-
option_config = option_configs[option_name]
|
398
|
+
option_config = option_configs[option_name.to_sym]
|
399
399
|
|
400
400
|
raise ArgumentError, "Unknown #{component_type} option '#{option_name}'" unless option_config
|
401
401
|
|
@@ -490,7 +490,7 @@ module GlueGun
|
|
490
490
|
next unless configuration.is_a?(Hash)
|
491
491
|
|
492
492
|
key = configuration.keys.first
|
493
|
-
if key.nil? || allowed_configs.exclude?(key)
|
493
|
+
if key.nil? || allowed_configs.exclude?(key.to_sym)
|
494
494
|
raise ArgumentError,
|
495
495
|
"Unknown #{component_type} option: #{init_args.keys.first}."
|
496
496
|
end
|
data/lib/glue_gun/model.rb
CHANGED
@@ -114,8 +114,8 @@ module GlueGun
|
|
114
114
|
|
115
115
|
def initialize(attributes = {})
|
116
116
|
attributes = {} if attributes.nil?
|
117
|
+
attributes = attributes.to_h.deep_symbolize_keys
|
117
118
|
attributes[:root_dir] ||= detect_root_dir
|
118
|
-
attributes = attributes.deep_symbolize_keys
|
119
119
|
attributes[option_key] ||= resolve_service_type(attributes, true)
|
120
120
|
db_attributes = self.class.extract_db_attributes(attributes)
|
121
121
|
super(db_attributes)
|
data/lib/glue_gun/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glue_gun_dsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.32
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Shollenberger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|