miniruby 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,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: miniruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Mateusz Drewniak
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2025-02-19 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: sorbet-runtime
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '0.5'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '0.5'
26
+ description: A fully fledged interpreter with a stack bases Virtual Machine for a
27
+ small subset of Ruby implemented in Ruby for educational purposes.
28
+ email:
29
+ - matmg24@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rubocop.yml"
35
+ - ".ruby-version"
36
+ - CHANGELOG.md
37
+ - LICENSE
38
+ - README.md
39
+ - Rakefile
40
+ - lib/miniruby.rb
41
+ - lib/miniruby/ast.rb
42
+ - lib/miniruby/lexer.rb
43
+ - lib/miniruby/parser.rb
44
+ - lib/miniruby/parser/result.rb
45
+ - lib/miniruby/position.rb
46
+ - lib/miniruby/span.rb
47
+ - lib/miniruby/token.rb
48
+ - lib/miniruby/version.rb
49
+ homepage: https://github.com/Verseth/miniruby
50
+ licenses:
51
+ - MIT
52
+ metadata:
53
+ homepage_uri: https://github.com/Verseth/miniruby
54
+ source_code_uri: https://github.com/Verseth/miniruby
55
+ changelog_uri: https://github.com/Verseth/miniruby/blob/main/CHANGELOG.md
56
+ rubygems_mfa_required: 'true'
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 3.2.0
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ requirements: []
71
+ rubygems_version: 3.6.2
72
+ specification_version: 4
73
+ summary: A fully fledged interpreter with a stack bases Virtual Machine for a small
74
+ subset of Ruby implemented in Ruby for educational purposes.
75
+ test_files: []