oxc 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: f51f7c162aaba8c9c93db46fea55375e9470361e515a14b766d83cc4b5f65e14
4
+ data.tar.gz: 9c24ffc7ec11336752abfa4e3c65cb128ca0c2dcdd4c660821079b8862b606cc
5
+ SHA512:
6
+ metadata.gz: 623b310be4738aa34be58fc9352b588874b36ee0ccf34f083a081244df59130e6d7e4a6f176ae17d3f176234b91f5b883e4afd2c7435a1cc0d6a5749d07656d1
7
+ data.tar.gz: 0fa21e6e9f2eac40277922b534d0f93e422e9b977014543009d92d136ee6a640cb1ae6d70c2ccb522d964161b59b913a0a584850335d9173e31454cc67fb6b01
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Oxc
4
+ VERSION = "0.0.1"
5
+ end
data/lib/oxc.rb ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "oxc/version"
4
+
5
+ module Oxc
6
+ end
data/oxc.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/oxc/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "oxc"
7
+ spec.version = Oxc::VERSION
8
+ spec.authors = ["Marco Roth"]
9
+ spec.email = ["marco.roth@intergga.ch"]
10
+
11
+ spec.summary = "A collection of high-performance tools for JavaScript and TypeScript written in Rust."
12
+ spec.description = "Ruby bindings for Oxc, the JavaScript Oxidation Compiler. A collection of high-performance tools for JavaScript and TypeScript written in Rust."
13
+ spec.homepage = "https://github.com/marcoroth/oxc-ruby"
14
+ spec.licenses = ["MIT"]
15
+ spec.required_ruby_version = ">= 3.2.0"
16
+ spec.require_paths = ["lib"]
17
+
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["source_code_uri"] = "https://github.com/marcoroth/oxc-ruby"
20
+ spec.metadata["changelog_uri"] = "https://github.com/marcoroth/oxc-ruby/releases"
21
+ spec.metadata["rubygems_mfa_required"] = "true"
22
+
23
+ spec.files = Dir[
24
+ "oxc.gemspec",
25
+ "LICENSE.txt",
26
+ "lib/**/*.rb",
27
+ "sig/**/*.rbs",
28
+ ]
29
+
30
+ spec.extensions = []
31
+ end
data/sig/oxc.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Oxc
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: oxc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Marco Roth
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: Ruby bindings for Oxc, the JavaScript Oxidation Compiler. A collection
13
+ of high-performance tools for JavaScript and TypeScript written in Rust.
14
+ email:
15
+ - marco.roth@intergga.ch
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/oxc.rb
21
+ - lib/oxc/version.rb
22
+ - oxc.gemspec
23
+ - sig/oxc.rbs
24
+ homepage: https://github.com/marcoroth/oxc-ruby
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/marcoroth/oxc-ruby
29
+ source_code_uri: https://github.com/marcoroth/oxc-ruby
30
+ changelog_uri: https://github.com/marcoroth/oxc-ruby/releases
31
+ rubygems_mfa_required: 'true'
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 3.2.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 4.0.16
47
+ specification_version: 4
48
+ summary: A collection of high-performance tools for JavaScript and TypeScript written
49
+ in Rust.
50
+ test_files: []