rus3 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rus3
4
+ VERSION = "0.1.0"
5
+ end
data/rus3.gemspec ADDED
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rus3/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rus3"
7
+ spec.version = Rus3::VERSION
8
+ spec.authors = ["mnbi"]
9
+ spec.email = ["mnbi@users.noreply.github.com"]
10
+
11
+ spec.summary = "Ruby with Syntax Sugar of Scheme"
12
+ spec.description = "Ruby with Syntax Sugar of Scheme"
13
+ spec.homepage = "https://github.com/mnbi/rus3"
14
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://github.com/mnbi/rus3"
18
+ spec.metadata["changelog_uri"] = "https://github.com/mnbi/rus3/blob/main/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
24
+ end
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ # Uncomment to register a new dependency of your gem
30
+ # spec.add_dependency "example-gem", "~> 1.0"
31
+
32
+ # For more information and examples about making a new gem, checkout our
33
+ # guide at: https://bundler.io/guides/creating_gem.html
34
+ end
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rus3
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - mnbi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Ruby with Syntax Sugar of Scheme
14
+ email:
15
+ - mnbi@users.noreply.github.com
16
+ executables:
17
+ - rus3
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".github/workflows/main.yml"
22
+ - ".gitignore"
23
+ - CHANGELOG.md
24
+ - Gemfile
25
+ - Gemfile.lock
26
+ - LICENSE
27
+ - README.md
28
+ - Rakefile
29
+ - bin/console
30
+ - bin/setup
31
+ - examples/fact.scm
32
+ - examples/fib.scm
33
+ - examples/iota.scm
34
+ - exe/rus3
35
+ - lib/rus3.rb
36
+ - lib/rus3/char.rb
37
+ - lib/rus3/error.rb
38
+ - lib/rus3/evaluator.rb
39
+ - lib/rus3/pair.rb
40
+ - lib/rus3/parser.rb
41
+ - lib/rus3/parser/lexer.rb
42
+ - lib/rus3/parser/scheme_parser.rb
43
+ - lib/rus3/port.rb
44
+ - lib/rus3/printer.rb
45
+ - lib/rus3/procedure/control.rb
46
+ - lib/rus3/procedure/list.rb
47
+ - lib/rus3/procedure/predicate.rb
48
+ - lib/rus3/procedure/write.rb
49
+ - lib/rus3/repl.rb
50
+ - lib/rus3/version.rb
51
+ - rus3.gemspec
52
+ homepage: https://github.com/mnbi/rus3
53
+ licenses: []
54
+ metadata:
55
+ homepage_uri: https://github.com/mnbi/rus3
56
+ source_code_uri: https://github.com/mnbi/rus3
57
+ changelog_uri: https://github.com/mnbi/rus3/blob/main/CHANGELOG.md
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 2.3.0
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubygems_version: 3.2.15
74
+ signing_key:
75
+ specification_version: 4
76
+ summary: Ruby with Syntax Sugar of Scheme
77
+ test_files: []