farseer 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 238fd129d9699a389fb3cf9bef59a95993914607241cc954191ac08065033b0a
4
+ data.tar.gz: aae60547d3a5f13dba7f6915dad362c72583d055b18419a0c4f2590b85389bf4
5
+ SHA512:
6
+ metadata.gz: 8e0d0adccbeb4911239704e7f2a309ab2af546ce3501511d37b07d7354518a36067abb0407dc6ef0a7936e9c53ae1461081ddf68f2213361c6c1a165a972b61d
7
+ data.tar.gz: e38631ef62deb3172a4fd58b170c960c4e5c0e47332969738716d10f55e4a3e19c803af06de332599242fe0984d38bc8ef04d3f70cb69c9a825f40937d828d37
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <https://unlicense.org>
25
+
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Farseer
2
+
3
+ A Functional Parsing Library for Ruby.
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Farseer
4
+ VERSION = '0.1.0'
5
+ public_constant :VERSION
6
+ end
data/lib/farseer.rb ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'zeitwerk'
4
+ loader = Zeitwerk::Loader::for_gem
5
+ loader.setup
6
+
7
+ module Farseer
8
+ end
9
+
10
+ loader.eager_load
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: farseer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - vaporyhumo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-06-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: zeitwerk
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2'
27
+ description: Functional Parsing Library for Ruby
28
+ email:
29
+ - roanvilina@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - lib/farseer.rb
37
+ - lib/farseer/version.rb
38
+ homepage: https://github.com/vaporyhumo/farseer
39
+ licenses:
40
+ - Unlicense
41
+ metadata:
42
+ homepage_uri: https://github.com/vaporyhumo/farseer
43
+ changelog_uri: https://github.com/vaporyhumo/farseer/blob/main/CHANGELOG.md
44
+ rubygems_mfa_required: 'true'
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.1'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 3.5.7
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: Functional Parsing
64
+ test_files: []