html_cruncher 1.0.0 → 1.0.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e9685a313076043ee56385eddc7d57c7419da5e
|
4
|
+
data.tar.gz: 2db6bf8f684e21995c4237c360d2a4871132f137
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bfa44312e36a732ad5c68ec178ac5e7ea0975abff6cf1393dba19bf75984593a606a101ed2724cd9aa5ef3a1a9bc3ff18f9192a0c3eed571ee8fdac04fb5c7a
|
7
|
+
data.tar.gz: 27d7db835597142e663fdcf71fa3305a2b040254365e4adde1e34aa142118a85470bab066d3a29e186e3434485bbc1bdae88cf96190cab3e2f8f06ca7837e0b1
|
data/Rakefile
CHANGED
@@ -184,7 +184,7 @@ parse_html(VALUE self, VALUE string, VALUE handler)
|
|
184
184
|
}
|
185
185
|
|
186
186
|
extern "C" void
|
187
|
-
|
187
|
+
Init_html_cruncher()
|
188
188
|
{
|
189
189
|
WHITESPACE_RE = new(nothrow) RE2("\\s+");
|
190
190
|
START_TAG_RE = new(nothrow) RE2("<(\\w+[a-zA-Z0-9_\\.-]*)((?:\\s+[\\w-]+(?:\\s*=\\s*(?:(?:\"[^\"]*\")|(?:'[^']*')|(?:[^'\">\\s]*)))?)*)\\s*\\/?>");
|
data/html_parser.gemspec
CHANGED
data/lib/html_cruncher.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: html_cruncher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mathias Biilmann Christensen
|
@@ -58,7 +58,7 @@ email:
|
|
58
58
|
- info@mathias-biilmann.net
|
59
59
|
executables: []
|
60
60
|
extensions:
|
61
|
-
- ext/
|
61
|
+
- ext/html_cruncher/extconf.rb
|
62
62
|
extra_rdoc_files: []
|
63
63
|
files:
|
64
64
|
- ".gitignore"
|
@@ -66,8 +66,8 @@ files:
|
|
66
66
|
- LICENSE.txt
|
67
67
|
- README.md
|
68
68
|
- Rakefile
|
69
|
-
- ext/
|
70
|
-
- ext/
|
69
|
+
- ext/html_cruncher/extconf.rb
|
70
|
+
- ext/html_cruncher/html_cruncher.cc
|
71
71
|
- html_parser.gemspec
|
72
72
|
- lib/html_cruncher.rb
|
73
73
|
- lib/html_cruncher/version.rb
|