rj_schema 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 9b4465c406c185df39ae9a8c7cb0d27e6e0e0e5516a060482e6c07aee908ccac
4
- data.tar.gz: be9ad80bd7a0d1840aa5730e46da6d8a1b839d74df4cab36bc777ec0307bed78
3
+ metadata.gz: 6411c4f4d8aac88113af4355c41c5e7bfa54b015c3b57bf7ba61febe6b534648
4
+ data.tar.gz: 231a52b016e6325ae1140f4ff18bb727ee7b05d4f3ac23cbf4015e391d4b59a4
5
5
  SHA512:
6
- metadata.gz: e46aa197637d5b5bb026134b0eadcac0714ad65692b10479d69f93ccf49b10304a4ffdebf42a4925d7f6e9f11a814789f27a9bf48fc75d429e08e77513b2f5a7
7
- data.tar.gz: fe08e34c5c1e06826109db6779918da9c386f64c6de040ca642749a73481e9c1e3bd70b797600e9a07da9afc52c28a729f6460755cee532a4190e274e7fd26c8
6
+ metadata.gz: 2bcb7da09863adda3dea6962112a4d236907227bfe4d0b5d51c24250963ef0363f2ff41ce62b6703d97656033158d72a1a3238f1e0a229ecd88dc6183a899293
7
+ data.tar.gz: 99b5a2bc9ee639cd38e4cd2b93bee294e294df492f4323849bc4953bb6e8f8e34464cb135d7ccb3278bd97cf08b84c7d6d7cb68c682970f77583307998d669ef
@@ -1,3 +1,13 @@
1
+ #include <regex>
2
+ #if !(__cplusplus >= 201103L && \
3
+ (!defined(__GLIBCXX__) || (__cplusplus >= 201402L) || \
4
+ (defined(_GLIBCXX_REGEX_DFS_QUANTIFIERS_LIMIT) || \
5
+ defined(_GLIBCXX_REGEX_STATE_LIMIT) || \
6
+ (defined(_GLIBCXX_RELEASE) && \
7
+ _GLIBCXX_RELEASE > 4))))
8
+ #error "Your compiler does not support std::regex. Please upgrade to a newer version. (i.e. >=g++-5)"
9
+ #endif
10
+
1
11
  #include <unordered_map>
2
12
  #include <ruby.h>
3
13
 
@@ -1,7 +1,7 @@
1
1
  require 'json'
2
2
 
3
3
  class RjSchema
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
6
6
 
7
7
  require 'rj_schema/rj_schema'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rj_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Semmler