inform6lib 0.0.4
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/LICENSE +201 -0
- data/README.md +125 -0
- data/Rakefile +65 -0
- data/lib/inform/English.h.rb +1279 -0
- data/lib/inform/Grammar.h.inf.rb +350 -0
- data/lib/inform/Parser.h.rb +145 -0
- data/lib/inform/VerbLib.h.rb +77 -0
- data/lib/inform/infix.h.inf.rb +58 -0
- data/lib/inform/infix.h.rb +1064 -0
- data/lib/inform/linklpa.h.rb +139 -0
- data/lib/inform/linklv.h.rb +174 -0
- data/lib/inform/parserm.h.rb +5884 -0
- data/lib/inform/verblibm.h.rb +2481 -0
- metadata +57 -0
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: inform6lib
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.4
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nels Nelson
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: The Inform 6 Library Ruby Port includes the natural language parser library,
|
|
13
|
+
the verb subroutine library, and the standard grammar definitions.
|
|
14
|
+
email: nels@nelsnelson.org
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- LICENSE
|
|
20
|
+
- README.md
|
|
21
|
+
- Rakefile
|
|
22
|
+
- lib/inform/English.h.rb
|
|
23
|
+
- lib/inform/Grammar.h.inf.rb
|
|
24
|
+
- lib/inform/Parser.h.rb
|
|
25
|
+
- lib/inform/VerbLib.h.rb
|
|
26
|
+
- lib/inform/infix.h.inf.rb
|
|
27
|
+
- lib/inform/infix.h.rb
|
|
28
|
+
- lib/inform/linklpa.h.rb
|
|
29
|
+
- lib/inform/linklv.h.rb
|
|
30
|
+
- lib/inform/parserm.h.rb
|
|
31
|
+
- lib/inform/verblibm.h.rb
|
|
32
|
+
homepage: https://rubygems.org/gems/inform6lib
|
|
33
|
+
licenses:
|
|
34
|
+
- Artistic-2.0
|
|
35
|
+
metadata:
|
|
36
|
+
source_code_uri: https://gitlab.com/nelsnelson/inform6lib-ruby
|
|
37
|
+
bug_tracker_uri: https://gitlab.com/nelsnelson/inform6lib-ruby/issues
|
|
38
|
+
rubygems_mfa_required: 'true'
|
|
39
|
+
rdoc_options: []
|
|
40
|
+
require_paths:
|
|
41
|
+
- lib
|
|
42
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 2.6.8
|
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
52
|
+
requirements: []
|
|
53
|
+
rubygems_version: 3.7.2
|
|
54
|
+
specification_version: 4
|
|
55
|
+
summary: The Inform6 Library Ruby Port is a faithful port of the Inform6 interactive
|
|
56
|
+
fiction standard library in Ruby.
|
|
57
|
+
test_files: []
|