re2 2.15.0.rc1 → 2.15.0
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/README.md +3 -3
- data/Rakefile +1 -1
- data/lib/re2/version.rb +1 -1
- data/re2.gemspec +2 -2
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92d0c12dc899d22cf74c00bbda8f89f29665b32d10fcc9a8eb9ca01f671c62f5
|
|
4
|
+
data.tar.gz: 1aea6bbc6cc7168a5a16fbb52b244535ed422707f63ebac59c2a0d1ae81bfbaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff0c9014a05c741b9bc7f3b9961c9e36a97cc4e48f7546779a4ceca60ff225c84a3930acd7daf5d58225aa051b0d6ee475ce778c66ecd3f3643d522bd105b72b
|
|
7
|
+
data.tar.gz: ea0b6da27aa3e568821dc48a452fcd3e4e16600fe66e3964702d37c56e2f9247d16130e95a60c83684530633937b810539cf45d5c0f842f88d4ccc5b35dafa53
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Python".
|
|
|
6
6
|
|
|
7
7
|
[](https://github.com/mudge/re2/actions)
|
|
8
8
|
|
|
9
|
-
**Current version:** 2.15.0
|
|
9
|
+
**Current version:** 2.15.0
|
|
10
10
|
**Bundled RE2 version:** libre2.11 (2024-07-02)
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
@@ -257,7 +257,7 @@ RE2(non_latin1_pattern.encode("ISO-8859-1"), utf8: false).match(non_latin1_text.
|
|
|
257
257
|
|
|
258
258
|
This gem requires the following to run:
|
|
259
259
|
|
|
260
|
-
* [Ruby](https://www.ruby-lang.org/en/)
|
|
260
|
+
* [Ruby](https://www.ruby-lang.org/en/) 2.6 to 3.4
|
|
261
261
|
|
|
262
262
|
It supports the following RE2 ABI versions:
|
|
263
263
|
|
|
@@ -271,7 +271,7 @@ Where possible, a pre-compiled native gem will be provided for the following pla
|
|
|
271
271
|
* `aarch64-linux`, `arm-linux`, `x86-linux` and `x86_64-linux` (requires [glibc](https://www.gnu.org/software/libc/) 2.29+, RubyGems 3.3.22+ and Bundler 2.3.21+)
|
|
272
272
|
* [musl](https://musl.libc.org/)-based systems such as [Alpine](https://alpinelinux.org) are supported with Bundler 2.5.6+
|
|
273
273
|
* macOS `x86_64-darwin` and `arm64-darwin`
|
|
274
|
-
* Windows `x64-mingw-ucrt`
|
|
274
|
+
* Windows `x64-mingw32` and `x64-mingw-ucrt`
|
|
275
275
|
|
|
276
276
|
### Verifying the gems
|
|
277
277
|
|
data/Rakefile
CHANGED
data/lib/re2/version.rb
CHANGED
data/re2.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.homepage = "https://github.com/mudge/re2"
|
|
12
12
|
s.extensions = ["ext/re2/extconf.rb"]
|
|
13
13
|
s.license = "BSD-3-Clause"
|
|
14
|
-
s.required_ruby_version = ">=
|
|
14
|
+
s.required_ruby_version = ">= 2.6.0"
|
|
15
15
|
s.files = [
|
|
16
16
|
"dependencies.yml",
|
|
17
17
|
"ext/re2/extconf.rb",
|
|
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
|
|
|
41
41
|
"spec/re2/scanner_spec.rb"
|
|
42
42
|
]
|
|
43
43
|
s.add_development_dependency("rake-compiler", "~> 1.2.7")
|
|
44
|
-
s.add_development_dependency("rake-compiler-dock", "~> 1.
|
|
44
|
+
s.add_development_dependency("rake-compiler-dock", "~> 1.8.0")
|
|
45
45
|
s.add_development_dependency("rspec", "~> 3.2")
|
|
46
46
|
s.add_runtime_dependency("mini_portile2", "~> 2.8.7") # keep version in sync with extconf.rb
|
|
47
47
|
end
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: re2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.15.0
|
|
4
|
+
version: 2.15.0
|
|
5
5
|
platform: ruby
|
|
6
|
-
original_platform: ''
|
|
7
6
|
authors:
|
|
8
7
|
- Paul Mucur
|
|
9
8
|
- Stan Hu
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2025-01-06 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rake-compiler
|
|
@@ -31,14 +30,14 @@ dependencies:
|
|
|
31
30
|
requirements:
|
|
32
31
|
- - "~>"
|
|
33
32
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 1.
|
|
33
|
+
version: 1.8.0
|
|
35
34
|
type: :development
|
|
36
35
|
prerelease: false
|
|
37
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
37
|
requirements:
|
|
39
38
|
- - "~>"
|
|
40
39
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 1.
|
|
40
|
+
version: 1.8.0
|
|
42
41
|
- !ruby/object:Gem::Dependency
|
|
43
42
|
name: rspec
|
|
44
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -111,14 +110,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
111
110
|
requirements:
|
|
112
111
|
- - ">="
|
|
113
112
|
- !ruby/object:Gem::Version
|
|
114
|
-
version:
|
|
113
|
+
version: 2.6.0
|
|
115
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
115
|
requirements:
|
|
117
116
|
- - ">="
|
|
118
117
|
- !ruby/object:Gem::Version
|
|
119
118
|
version: '0'
|
|
120
119
|
requirements: []
|
|
121
|
-
rubygems_version: 3.6.
|
|
120
|
+
rubygems_version: 3.6.2
|
|
122
121
|
specification_version: 4
|
|
123
122
|
summary: Ruby bindings to RE2.
|
|
124
123
|
test_files:
|