adiwg-mdjson_schemas 2.8.1 → 2.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 16f382541f1ede14317124f4dc1a74fccc651014d1031f35029322654ccacd0f
4
- data.tar.gz: bcba3bc89e6f658e5b54825cf4899e93ba49651ac21d6fc8d2054b8b4bd2dea4
3
+ metadata.gz: fa2772ea2ae6a21d680e1405fb074828e78bc4f2c61f76aa1e0912f36080bd3b
4
+ data.tar.gz: 0f48447823dd6be78973116ff44ce4bf270e4c64a6cacf8e4cf9c3ca5efafe16
5
5
  SHA512:
6
- metadata.gz: 1af89c425fdf9254fcf3d4d4903d3a7a40bf43032688a06defd4f090240380cbc8814250efdc85dc9b904c980ac0bd7d4ce63e354942ca118aedded7550a3cbf
7
- data.tar.gz: 73f962175a318650dce16d5dea264022d0566ca8cb14160a8b040c00e70148fbe4e6eee958a2c10e18f01106197f2cf9dfb0869a11bbd67dfe10360c8bce2c7c
6
+ metadata.gz: 23d4b2a087a926628b04c61ebc9a27517aefecc2f53dfd15c29dd98d72eba3b96c8a696a376cb77b87cbbe10d137d7677a2b69cf5fa9469f9c1a0fa5e7b653d8
7
+ data.tar.gz: f8d5573196a9efd700b3d0bad92c1f90ae6fc3dbc46e7871bf231763c65fb4f416b5fb08f396fd4ed90f439473e611cc7e3e57d82185e1a8ae5e1ea937284493
data/.gitignore CHANGED
@@ -18,3 +18,5 @@ tmp
18
18
  .project
19
19
  node_modules
20
20
  resources/js
21
+
22
+ .DS_Store
data/README.md CHANGED
@@ -5,7 +5,6 @@
5
5
 
6
6
  # mdJson-schemas
7
7
 
8
-
9
8
  JSON schemas for the ADIwg project and data metadata standard
10
9
 
11
10
  ## Ruby Gem
@@ -26,12 +25,6 @@ Or install it yourself as:
26
25
 
27
26
  $ gem install adiwg-json_schemas
28
27
 
29
- ## Bower
30
-
31
- Install:
32
-
33
- $ bower install mdjson-schemas
34
-
35
28
  ## npm
36
29
 
37
30
  Install:
@@ -40,10 +33,9 @@ Install:
40
33
 
41
34
  const Schemas = require('../resources/js/schemas.js');
42
35
 
43
-
44
36
  ### Usage
45
37
 
46
- The main schema file is `schema/schema.json`. Load that file in your [validator](http://json-schema.org/implementations.html#libraries).
38
+ The main schema file is `schema/schema.json`. Load that file in your [validator](http://json-schema.org/implementations.html#libraries).
47
39
 
48
40
  **NOTE**: The schemas use relative addresses for `$ref` paths. If this causes a problem
49
41
  with the [ruby-json-schema/json-schema](https://github.com/ruby-json-schema/json-schema) gem,
@@ -56,3 +48,7 @@ as a workaround you can pre-load all of the schemas by calling `ADIWG::MdjsonSch
56
48
  3. Commit your changes (`git commit -am 'Add some feature'`)
57
49
  4. Push to the branch (`git push origin my-new-feature`)
58
50
  5. Create new Pull Request
51
+
52
+ ### Ignore anything below this line
53
+
54
+ Just making changes to make changes to something. Trying to resolve merge conflicts.
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake", ">= 0"
23
23
  spec.add_development_dependency "json-schema", "~> 2.8.1"
24
24
  spec.add_development_dependency "minitest", "~>5"
25
- spec.add_development_dependency "adiwg-mdcodes", "~> 2.7.5"
25
+ spec.add_development_dependency "adiwg-mdcodes", "~> 2.9.0"
26
26
  end
@@ -0,0 +1,10 @@
1
+ {
2
+ "rangeElementDescription":
3
+ [
4
+ {
5
+ "name": "example name",
6
+ "definition": "example definition",
7
+ "rangeElement": [ "elem1", "elem2" ]
8
+ }
9
+ ]
10
+ }
@@ -1,6 +1,6 @@
1
1
  module ADIWG
2
2
  module MdjsonSchemas
3
3
  # Current schema version number
4
- VERSION = "2.8.1"
4
+ VERSION = "2.9.0"
5
5
  end
6
6
  end