caps 0.1.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.
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: caps
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Victor Gama
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Caps parses CSS into Abstract Syntax Trees
14
+ email:
15
+ - hey@vito.io
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".editorconfig"
21
+ - ".rspec"
22
+ - ".rubocop.yml"
23
+ - CODE_OF_CONDUCT.md
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - LICENSE.txt
27
+ - README.md
28
+ - Rakefile
29
+ - lib/caps.rb
30
+ - lib/caps/errors.rb
31
+ - lib/caps/parser.rb
32
+ - lib/caps/parser/consumers.rb
33
+ - lib/caps/parser/entrypoints.rb
34
+ - lib/caps/parser/helpers.rb
35
+ - lib/caps/parser/infra.rb
36
+ - lib/caps/tokenizer.rb
37
+ - lib/caps/tokenizer/helpers.rb
38
+ - lib/caps/tokenizer/infra.rb
39
+ - lib/caps/tokenizer/location.rb
40
+ - lib/caps/version.rb
41
+ - tokens.json
42
+ homepage: https://github.com/heyvito/caps
43
+ licenses:
44
+ - MIT
45
+ metadata:
46
+ homepage_uri: https://github.com/heyvito/caps
47
+ source_code_uri: https://github.com/heyvito/caps
48
+ rubygems_mfa_required: 'true'
49
+ post_install_message:
50
+ rdoc_options: []
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 2.6.0
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ requirements: []
64
+ rubygems_version: 3.4.10
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Caps parses CSS into Abstract Syntax Trees
68
+ test_files: []