adiwg-mdjson_schemas 2.8.1 → 2.9.1

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: 75b8696e682f832e54fd13e14396286053d4e77b3784841a17efdb422966ec63
4
+ data.tar.gz: 932eff64135ff60d286c1c1d89907030c36b86e0df95f704439a09400925eeec
5
5
  SHA512:
6
- metadata.gz: 1af89c425fdf9254fcf3d4d4903d3a7a40bf43032688a06defd4f090240380cbc8814250efdc85dc9b904c980ac0bd7d4ce63e354942ca118aedded7550a3cbf
7
- data.tar.gz: 73f962175a318650dce16d5dea264022d0566ca8cb14160a8b040c00e70148fbe4e6eee958a2c10e18f01106197f2cf9dfb0869a11bbd67dfe10360c8bce2c7c
6
+ metadata.gz: 9d7cab24d8d96207c88744c961c821fdf924174059c10497adeec98ebd8c2f601e618567864f0bd2ad804afbaea6c256e92ea686fdbaf716fe5975b6d3363104
7
+ data.tar.gz: 44967aaba13562bfc314dcd5bc6a3640dfd5ea081d33e29d0047f09ec5baa570ceb8970dbe12383725174454f351b494bcc944df1d4860c93ba9065a273c405a
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
@@ -18,3 +17,5 @@ tmp
18
17
  .project
19
18
  node_modules
20
19
  resources/js
20
+
21
+ .DS_Store
data/Gemfile.lock ADDED
@@ -0,0 +1,32 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ adiwg-mdjson_schemas (2.9.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ addressable (2.8.6)
10
+ public_suffix (>= 2.0.2, < 6.0)
11
+ adiwg-mdcodes (2.9.2)
12
+ json (~> 2.0)
13
+ json (2.7.1)
14
+ json-schema (2.8.1)
15
+ addressable (>= 2.4)
16
+ minitest (5.22.2)
17
+ public_suffix (5.0.4)
18
+ rake (13.1.0)
19
+
20
+ PLATFORMS
21
+ arm64-darwin-22
22
+
23
+ DEPENDENCIES
24
+ adiwg-mdcodes (= 2.9.2)
25
+ adiwg-mdjson_schemas!
26
+ bundler (~> 2)
27
+ json-schema (~> 2.8.1)
28
+ minitest (~> 5)
29
+ rake
30
+
31
+ BUNDLED WITH
32
+ 2.4.21
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.2"
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.1"
5
5
  end
6
6
  end