wisp-schema 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/wisp-schema.rb +1 -1
  3. data/wisp.json +11 -8
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4253efba2ac0fca4094a70d5cfee91f7f74bd8c564849da696b26adb6586aa65
4
- data.tar.gz: d9929517dd66756822a8e64a480923b29f2bc9f4b4a1fc34b9a701a5994b7edd
3
+ metadata.gz: 7492760f3cec9571fab994b8d46303b270465d011473528965eb40f44f44266b
4
+ data.tar.gz: 9c19eed6f6c8621b7c9710d4a1b6017cb9c0f6a246bc78901de44cd90bda462b
5
5
  SHA512:
6
- metadata.gz: 61c54bd36199f7fa638287834b198b39c83673ed295f63925930bbf9aa29bfe25e566aea2241d71edc41baa21ca726c58d50f41c5742d7f2e9f41a076859269a
7
- data.tar.gz: 8fc3d554d76dba464e34f83683410e13e82fb3237ff6e479054e271344815fbfb8d4cbc7333b790c72dc7a8415b3388c61ddda429c4773f72ab776f66c2aa878
6
+ metadata.gz: e056fca9b58ac00e392ed44aa20136c4689b470616da297efa92a7d6c8d5a9c035b0b9d683fd78d638dcfcc4249e850379d75f8a34379cb4793c5dab34226b73
7
+ data.tar.gz: 33d7fc94d54902edb7241c3d6c0c374051dbb2236b2b37777ab86d261b2b3f8bff6e2b9e70ea70c3627851b85db09c97857f6073d1297d73b97bcd9f6f93bdf2
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = '0.6.0'
4
+ VERSION = '0.7.0'
5
5
 
6
6
  SCHEMA_PATH = File.expand_path('../wisp.json', __dir__)
7
7
  end
data/wisp.json CHANGED
@@ -211,11 +211,11 @@
211
211
  "action": {
212
212
  "enum": ["fill"]
213
213
  },
214
- "text": {"title": "Text", "type": "string"},
215
214
  "target": {
216
215
  "title": "Target",
217
216
  "$ref": "#/definitions/noun"
218
- }
217
+ },
218
+ "text": {"title": "Text", "type": "string"}
219
219
  },
220
220
  "required": ["action", "target", "text"]
221
221
  },
@@ -239,8 +239,8 @@
239
239
  "action": {
240
240
  "enum": ["send_key"]
241
241
  },
242
- "modifier": {"title": "Modifier", "type": "string"},
243
- "key": {"title": "Key", "type": "string"}
242
+ "key": {"title": "Key", "type": "string"},
243
+ "modifier": {"title": "Modifier", "type": "string"}
244
244
  },
245
245
  "required": ["action", "key"]
246
246
  },
@@ -371,11 +371,11 @@
371
371
  "action": {
372
372
  "enum": ["scroll"]
373
373
  },
374
+ "direction": {"title": "Direction", "type": "string"},
374
375
  "target": {
375
376
  "title": "Target",
376
377
  "$ref": "#/definitions/noun"
377
- },
378
- "direction": {"title": "Direction", "type": "string"}
378
+ }
379
379
  },
380
380
  "required": ["action", "direction"]
381
381
  },
@@ -387,11 +387,14 @@
387
387
  "action": {
388
388
  "enum": ["drag_and_drop"]
389
389
  },
390
+ "object": {
391
+ "title": "Object",
392
+ "type": "string"
393
+ },
390
394
  "target": {
391
395
  "title": "Target",
392
396
  "$ref": "#/definitions/noun"
393
- },
394
- "object": {"title": "Object", "type": "string"}
397
+ }
395
398
  },
396
399
  "required": ["action", "target", "object"]
397
400
  },
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wisp-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski