json_schema_rails 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8555812280bf51321d1ceeb834194e518a5110ad
4
- data.tar.gz: 1b72b9abbb83f4100357bf431b4f5c4fea396f93
3
+ metadata.gz: f7586adefa32b8ade20089a506a91e2e3796e5d4
4
+ data.tar.gz: 611060b68ac2ddd13368875353817d3657890a3f
5
5
  SHA512:
6
- metadata.gz: 3f99d59ebe2901cab914b503445826427fcbc456b7d23a25ea7ffb606b3cd3d0ac7028cc1f5ca17154f63b9bc189b4212120cec6d1da1523619d73c0b92daaa1
7
- data.tar.gz: 856c2b2a33faa7a4e0057cb203c48889bba9b1131e2e5a091ebc2d9676d699194781ccb1556d32a5990a4bbb3a3f94f99ff1e41fd62ddc9fe5146f0068dce3c2
6
+ metadata.gz: 855c76fe2a38e2fe3a96cd564d2aca119b84289e4c3a641f072b1c16c5b28ce600f9726791880869e11824f6b232e75caef3f6692d70b9c54d71968d6eea9b64
7
+ data.tar.gz: f9c1087696a00f0593208e533256addc2c6af06f4d329da07f7523bd814dc4928db0c8ff59ba3275c17ba6a291423ae4c431fd3002ee6a466c5620f6217f00f2
@@ -12,9 +12,9 @@ module JsonSchemaRails
12
12
  def use_core_schemas!(options = {})
13
13
  schemas_dir = File.expand_path('../../../schemas', __FILE__)
14
14
  if options[:loose]
15
- add_meta_schema_file Dir[File.join(schemas_dir, '*.json')]
15
+ add_meta_schema_file Dir[File.join(schemas_dir, '*.json')].sort
16
16
  else
17
- add_meta_schema_file Dir[File.join(schemas_dir, 'strict', '*.json')]
17
+ add_meta_schema_file Dir[File.join(schemas_dir, 'strict', '*.json')].sort
18
18
  end
19
19
  end
20
20
 
@@ -1,3 +1,3 @@
1
1
  module JsonSchemaRails
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_schema_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kota Saito