dip 8.2.1 → 8.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dip/version.rb +1 -1
- data/schema.json +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80875b630f23c78d3358e7574bfedb2ce6fb9d9c5c02d61487e4097f8c9f801a
|
4
|
+
data.tar.gz: 82ac0e4034ef125d477a5e696035f3dd49b08a541d240a9d556b9ea947c3fac9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17b348c267b0d55b95cf1050a77e0b2c66a828e48745c2e6aa3c6ceb8f12df4f460e0df982d2f301426745cd7135fce33c40f1dcd5a54a5bef1ff7c8e07cf713
|
7
|
+
data.tar.gz: 513bcbd9476a500dbeaa6d633ed88657e4209c9725be78e868be5c7d1ef039433f644b852cd99f9862fdd7f481f55cea2f674be1a4983f1dce86d19bedc7d9e8
|
data/lib/dip/version.rb
CHANGED
data/schema.json
CHANGED
@@ -94,7 +94,7 @@
|
|
94
94
|
"type": "object",
|
95
95
|
"description": "Contains subcommands with the same structure as main commands",
|
96
96
|
"patternProperties": {
|
97
|
-
"^[\\w
|
97
|
+
"^[\\w\\-.:/\\s]+$": {
|
98
98
|
"$ref": "#/definitions/interaction_command"
|
99
99
|
}
|
100
100
|
},
|
@@ -142,7 +142,7 @@
|
|
142
142
|
"type": "object",
|
143
143
|
"description": "Defines the commands and their configurations",
|
144
144
|
"patternProperties": {
|
145
|
-
"^[\\w
|
145
|
+
"^[\\w\\-.:/\\s]+$": {
|
146
146
|
"$ref": "#/definitions/interaction_command"
|
147
147
|
}
|
148
148
|
},
|
@@ -191,13 +191,13 @@
|
|
191
191
|
"description": "Contains infrastructure services configuration",
|
192
192
|
"additionalProperties": false,
|
193
193
|
"patternProperties": {
|
194
|
-
"^[\\w
|
194
|
+
"^[\\w\\-.:/\\s]+$": {
|
195
195
|
"type": "object",
|
196
196
|
"additionalProperties": false,
|
197
197
|
"properties": {
|
198
198
|
"git": {
|
199
199
|
"type": "string",
|
200
|
-
"pattern": "^(git@|git://|https?://)[\\w\\d
|
200
|
+
"pattern": "^(git@|git://|https?://)[\\w\\d.@:/\\-]+$",
|
201
201
|
"description": "Git repository URL for the infrastructure component",
|
202
202
|
"examples": ["https://github.com/mycompany/redis-config.git"]
|
203
203
|
},
|
@@ -220,5 +220,5 @@
|
|
220
220
|
}
|
221
221
|
}
|
222
222
|
},
|
223
|
-
"required": ["version"
|
223
|
+
"required": ["version"]
|
224
224
|
}
|