redstone-ruby 0.0.1

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: 33b05aab153173f3e121d648debfa2f9dc30222d447070152f41878284c46100
4
+ data.tar.gz: 5ee21b54da546d974f9b3c91210ffd8d11ead286ce549a254fe873a93df2b337
5
+ SHA512:
6
+ metadata.gz: 49b955cd19bc829051ba21cd801287c3d5ba0988c094195de33e43d4dbd10431b95610bd5a7c911e3146234f150e8a91c980530748273e387f7ee52dc59bef93
7
+ data.tar.gz: 10f8b8f7e9bf729df6c05b4a6f47e808e6c599768ed7bcb7e203867227fd7ef15a22a3ed972fcd339f5e5543501757da381c3ee5eb95a575e64e6045b99cb37c
data/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # Redstone
2
+
3
+ ## Installation
4
+
5
+ Install the gem and add to the application's Gemfile by executing:
6
+
7
+ ```bash
8
+ bundle add redstone-ruby
9
+ ```
10
+
11
+ If bundler is not being used to manage dependencies, install the gem by executing:
12
+
13
+ ```bash
14
+ gem install redstone-ruby
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ TODO: Write usage instructions here
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
+
25
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/redstone-ruby/redstone. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/marcoroth/redstone-ruby/blob/main/CODE_OF_CONDUCT.md).
30
+
31
+ ## Code of Conduct
32
+
33
+ Everyone interacting in the Redstone::Ruby project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/marcoroth/redstone-ruby/blob/main/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "version"
4
+
5
+ module Redstone
6
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Redstone
4
+ VERSION = "0.0.1"
5
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/redstone/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "redstone-ruby"
7
+ spec.version = Redstone::VERSION
8
+ spec.authors = ["Marco Roth"]
9
+ spec.email = ["marco.roth@intergga.ch"]
10
+
11
+ spec.summary = "Ruby Interpreter written in JavaScript"
12
+ spec.description = spec.summary
13
+ spec.homepage = "https://github.com/redstone-ruby/redstone"
14
+ spec.required_ruby_version = ">= 3.1.0"
15
+
16
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
17
+ spec.metadata["rubygems_mfa_required"] = "true"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+
21
+ spec.files = Dir[
22
+ "redstone-ruby.gemspec",
23
+ "LICENSE.txt",
24
+ "README.md",
25
+ "lib/**/*.rb",
26
+ "sig/**/*.rbs"
27
+ ]
28
+
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+ end
@@ -0,0 +1,4 @@
1
+ module Redstone
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: redstone-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Marco Roth
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Ruby Interpreter written in JavaScript
13
+ email:
14
+ - marco.roth@intergga.ch
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - README.md
20
+ - lib/redstone/redstone.rb
21
+ - lib/redstone/version.rb
22
+ - redstone-ruby.gemspec
23
+ - sig/redstone/redstone.rbs
24
+ homepage: https://github.com/redstone-ruby/redstone
25
+ licenses: []
26
+ metadata:
27
+ allowed_push_host: https://rubygems.org
28
+ rubygems_mfa_required: 'true'
29
+ homepage_uri: https://github.com/redstone-ruby/redstone
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 3.1.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.6.9
45
+ specification_version: 4
46
+ summary: Ruby Interpreter written in JavaScript
47
+ test_files: []