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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afbaeaaa174e69b056a175c1a0aed5da7f52e33fcbc4859448262aff427086f9
4
- data.tar.gz: dd190c243a6d494ed1e87c155cdeda2e6843bbc827e048e8df7eb992d2c8d09b
3
+ metadata.gz: 547e3a6efbb79ec3d4594ebde36ac09ce59ea300f944faa266689a203d08fa61
4
+ data.tar.gz: 904df3cee8bc56e50dd2b856f5606a9219ac9daa3ad9eb9a8629ab2b3c9502b3
5
5
  SHA512:
6
- metadata.gz: '083570d10482fe637251a7d6fa912e6ec0ea3daa3d0283fa65b6f7aa54d798c693cb359fda1c6186bc5223504d9f31d91e6b359c170d718623279f2aac615186'
7
- data.tar.gz: 5bd729068d06e069f625b2fc2d034dab769707f749ee175fbc420253cac953e52f8143194c1bca51a18bcd16d6190026e1823375b9eba3a564fd39a237e065ea
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 = ['Your Name']
9
- spec.email = ['your.email@example.com']
8
+ spec.authors = ['James Cook']
9
+ spec.email = ['jcook.rubyist@gmail.com']
10
10
 
11
- spec.summary = 'CSS parser built with Ragel state machines'
12
- spec.description = 'A high-performance CSS parser using Ragel finite state machines for accurate parsing of complex CSS structures'
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')
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cataract
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Your Name
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 high-performance CSS parser using Ragel finite state machines for accurate
13
- parsing of complex CSS structures
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
- - your.email@example.com
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 built with Ragel state machines
134
+ summary: High-performance CSS parser with C extensions
135
135
  test_files: []