regexp-match-polyfill 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -1
- data/Gemfile.lock +2 -2
- data/lib/regexp-match-polyfill.rb +3 -3
- data/lib/regexp-match-polyfill/version.rb +1 -1
- data/test/test-regexp-match-polyfill.rb +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb58a10ffdc874b10d8bda2dd5fbdadb65d09fd6
|
4
|
+
data.tar.gz: 726bd2de4e76aa7d177723874157437a419cc7e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d2f3cdc5d69e2b0c2f1e8f0887e5dec4864e2038a4ee544fb933ad9922232b208801900627be9e8dbc24a8cfab370ae15a148bd1f41019f1103fbd853f73386
|
7
|
+
data.tar.gz: bc1a4204475968aa3f0405cf92997ae6f1a1ec0b30f00b7cbe23a9ea370af920f86c2cf81f20d7a82f1545c03c51a80b67d4e4a8255a640dc7ddea85d33ec5d7
|
data/.travis.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -19,7 +19,7 @@ unless Regexp.instance_methods.include?(:match?) &&
|
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
22
|
-
Regexp.include RegexpMatchPolyfill::RegexpExtension
|
23
|
-
String.include RegexpMatchPolyfill::StringExtension
|
24
|
-
Symbol.include RegexpMatchPolyfill::StringExtension
|
22
|
+
Regexp.send :include, RegexpMatchPolyfill::RegexpExtension
|
23
|
+
String.send :include, RegexpMatchPolyfill::StringExtension
|
24
|
+
Symbol.send :include, RegexpMatchPolyfill::StringExtension
|
25
25
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: regexp-match-polyfill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yaroslav Konoplov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
90
|
rubyforge_project:
|
91
|
-
rubygems_version: 2.
|
91
|
+
rubygems_version: 2.6.12
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: Implements Regexp#match?, String#match? and Symbol#match? in Ruby < 2.4.
|