regexp-examples 1.4.3 → 1.4.4
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 +4 -4
- data/.travis.yml +5 -4
- data/README.md +1 -0
- data/db/unicode_ranges_2.6.pstore +0 -0
- data/lib/regexp-examples/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1b039b345ad1978b9d96b4d87d2e709326f9a45
|
|
4
|
+
data.tar.gz: fc3578734d1c91a01030d864ab240252600df089
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1eb398e9341eb8fc06a97a1b3a27c8b0d5efafd6b049f76f454efb13516fa29b1047f51b0646e14ff2888ee16fbed738dac53d1042bd8ccb180064e5c3ce702d
|
|
7
|
+
data.tar.gz: cc01ceb7567b6e77f37a369dc99e429ccd3389a72393711554a959dcc6cc6d72292ffb7e0906768898b593d1dceac9a0a0f557552ca34dc9c259cb679fe7b1ca
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -58,6 +58,7 @@ Obviously, you will get different (random) results if you try these yourself!
|
|
|
58
58
|
* MRI 2.3.x
|
|
59
59
|
* MRI 2.4.x
|
|
60
60
|
* MRI 2.5.x
|
|
61
|
+
* MRI 2.6.x
|
|
61
62
|
|
|
62
63
|
MRI ≤ 1.9.3 are not supported. This is primarily because MRI 2.0.0 introduced a new
|
|
63
64
|
regexp engine (`Oniguruma` was replaced by `Onigmo`). Whilst *most* of this gem could
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: regexp-examples
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Lord
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-12-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -58,6 +58,7 @@ files:
|
|
|
58
58
|
- db/unicode_ranges_2.3.pstore
|
|
59
59
|
- db/unicode_ranges_2.4.pstore
|
|
60
60
|
- db/unicode_ranges_2.5.pstore
|
|
61
|
+
- db/unicode_ranges_2.6.pstore
|
|
61
62
|
- lib/core_extensions/regexp/examples.rb
|
|
62
63
|
- lib/regexp-examples.rb
|
|
63
64
|
- lib/regexp-examples/backreferences.rb
|