regexp-match-polyfill 1.0.1 → 1.0.2

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: e7da60e6e01fc354c5d5c74ad72a2f28d6220d76
4
- data.tar.gz: e77e5fd3f610b1ca705c92048c29c3982dcde6b2
3
+ metadata.gz: bb58a10ffdc874b10d8bda2dd5fbdadb65d09fd6
4
+ data.tar.gz: 726bd2de4e76aa7d177723874157437a419cc7e4
5
5
  SHA512:
6
- metadata.gz: b9f20128834c0bb1da924515122a453bf638c822e302068dccb05948a525784ecdd85a6a350bd6d29ae5892bed968a5a73604cfa100c52928ea10a6fc87bc187
7
- data.tar.gz: e140fda9bfd546c794d819cf29694db823725e8388cbf45e559516ab4e2ce1e42b8f5d9342c056b5b97503d31a8c5ff1601b31508944827d4379cebfed7ce7f8
6
+ metadata.gz: 2d2f3cdc5d69e2b0c2f1e8f0887e5dec4864e2038a4ee544fb933ad9922232b208801900627be9e8dbc24a8cfab370ae15a148bd1f41019f1103fbd853f73386
7
+ data.tar.gz: bc1a4204475968aa3f0405cf92997ae6f1a1ec0b30f00b7cbe23a9ea370af920f86c2cf81f20d7a82f1545c03c51a80b67d4e4a8255a640dc7ddea85d33ec5d7
@@ -1,6 +1,10 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.3.3
4
+ - 2.0.0
5
+ - 2.1.10
6
+ - 2.2.7
7
+ - 2.3.4
8
+ - 2.4.1
5
9
 
6
10
  cache: bundler
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- regexp-match-polyfill (1.0.1)
4
+ regexp-match-polyfill (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -21,4 +21,4 @@ DEPENDENCIES
21
21
  test-unit (~> 3.2)
22
22
 
23
23
  BUNDLED WITH
24
- 1.14.3
24
+ 1.14.6
@@ -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
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module RegexpMatchPolyfill
5
- VERSION = '1.0.1'
5
+ VERSION = '1.0.2'
6
6
  end
@@ -1,8 +1,7 @@
1
1
  # encoding: UTF-8
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'bundler'
5
- Bundler.require :default, :development, :test
4
+ Bundler.require :default, :development
6
5
 
7
6
  class RegexpMatchPolyfillTest < Test::Unit::TestCase
8
7
  def test_regexp_match
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.1
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-03-28 00:00:00.000000000 Z
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.5.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.