cataract 0.1.0 → 0.1.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 +4 -4
- data/cataract.gemspec +4 -4
- data/lib/cataract/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 547e3a6efbb79ec3d4594ebde36ac09ce59ea300f944faa266689a203d08fa61
|
|
4
|
+
data.tar.gz: 904df3cee8bc56e50dd2b856f5606a9219ac9daa3ad9eb9a8629ab2b3c9502b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49d86a56a1fc93390172eb9ccb8d523a9ee3ee6c4162fc8959158bc27a12f3afb146cae5e0e5073426c4fda7e5a4bd362f8d0800dcb1b0f29660bb496a47aa0c
|
|
7
|
+
data.tar.gz: 8da8740393b687304acaa81856b0e7235f6fc3ea33bc34bebf7fa5fc567ca5d7cff90e7a8975a79236374fa2610afaa5ad9795084589c6bc18368c6436b9a2b7
|
data/cataract.gemspec
CHANGED
|
@@ -5,11 +5,11 @@ require_relative 'lib/cataract/version'
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'cataract'
|
|
7
7
|
spec.version = Cataract::VERSION
|
|
8
|
-
spec.authors = ['
|
|
9
|
-
spec.email = ['
|
|
8
|
+
spec.authors = ['James Cook']
|
|
9
|
+
spec.email = ['jcook.rubyist@gmail.com']
|
|
10
10
|
|
|
11
|
-
spec.summary = 'CSS parser
|
|
12
|
-
spec.description = 'A
|
|
11
|
+
spec.summary = 'High-performance CSS parser with C extensions'
|
|
12
|
+
spec.description = 'A performant CSS parser with C extensions for accurate parsing of complex CSS structures including media queries, nested selectors, and CSS Color Level 4'
|
|
13
13
|
spec.homepage = 'https://github.com/jamescook/cataract'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
|
data/lib/cataract/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cataract
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- James Cook
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
|
-
description: A
|
|
13
|
-
|
|
12
|
+
description: A performant CSS parser with C extensions for accurate parsing of complex
|
|
13
|
+
CSS structures including media queries, nested selectors, and CSS Color Level 4
|
|
14
14
|
email:
|
|
15
|
-
-
|
|
15
|
+
- jcook.rubyist@gmail.com
|
|
16
16
|
executables: []
|
|
17
17
|
extensions:
|
|
18
18
|
- ext/cataract/extconf.rb
|
|
@@ -131,5 +131,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
requirements: []
|
|
132
132
|
rubygems_version: 3.6.9
|
|
133
133
|
specification_version: 4
|
|
134
|
-
summary: CSS parser
|
|
134
|
+
summary: High-performance CSS parser with C extensions
|
|
135
135
|
test_files: []
|