lexer 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.
- checksums.yaml +7 -0
- data/lib/lexer.rb +5 -0
- metadata +44 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 20adc1838b9327d7d590b85bb05a43bf1f47e6b8713f95c367524f4c68acfd96
|
|
4
|
+
data.tar.gz: 292ff93ba4785155558bb901214ff5c59972dd8a8b1b177ece678840a001bfad
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: be0a460d3a02e03fd294283ee1bfbbf0c65a6218cd834bc0d7dda61c32cc4a1523ed96150500c41e92d93c0cbe119951243e2cfa3df2933c6283287665c0089f
|
|
7
|
+
data.tar.gz: 11d9041bbfaa1eb837b03b3be21669d05d23553cd2129942a27d396e7c88468db491aa2d9d8a56953b46246439d7dd1b23f48dff1d3c62e9677b0a4c2c70365b
|
data/lib/lexer.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: lexer
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Sam Westerman
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-11-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: "[WIP] A lexer which allows full customization of token types and lexing"
|
|
14
|
+
email: sam at sampersand (.) me
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/lexer.rb
|
|
20
|
+
homepage: https://rubygems.org/gems/example
|
|
21
|
+
licenses:
|
|
22
|
+
- MIT
|
|
23
|
+
metadata:
|
|
24
|
+
source_code_uri: https://github.com/example/example
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
requirements: []
|
|
40
|
+
rubygems_version: 3.3.3
|
|
41
|
+
signing_key:
|
|
42
|
+
specification_version: 4
|
|
43
|
+
summary: Lex arbitrary tokens
|
|
44
|
+
test_files: []
|