ruby_wasm 2.5.0.pre.1 → 2.5.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 CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_wasm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0.pre.1
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuta Saito
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-04 00:00:00.000000000 Z
11
+ date: 2024-01-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby to WebAssembly toolkit. This gem takes Ruby code and Gemfile, and
14
14
  packages them with Ruby runtime into a WebAssembly binary.
@@ -70,20 +70,19 @@ files:
70
70
  - lib/ruby_wasm/version.rb
71
71
  - package-lock.json
72
72
  - package.json
73
- - ruby_wasm.gemspec
73
+ - rakelib/check.rake
74
+ - rakelib/ci.rake
75
+ - rakelib/doc.rake
76
+ - rakelib/format.rake
77
+ - rakelib/gem.rake
78
+ - rakelib/packaging.rake
79
+ - rakelib/version.rake
74
80
  - sig/open_uri.rbs
75
81
  - sig/ruby_wasm/build.rbs
76
82
  - sig/ruby_wasm/cli.rbs
77
83
  - sig/ruby_wasm/ext.rbs
78
84
  - sig/ruby_wasm/packager.rbs
79
85
  - sig/ruby_wasm/util.rbs
80
- - tasks/check.rake
81
- - tasks/ci.rake
82
- - tasks/doc.rake
83
- - tasks/format.rake
84
- - tasks/gem.rake
85
- - tasks/packaging.rake
86
- - tasks/version.rake
87
86
  - tools/clang-format-diff.sh
88
87
  - tools/exe/rbminify
89
88
  - tools/lib/syntax_tree/minify_ruby.rb
data/ruby_wasm.gemspec DELETED
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/ruby_wasm/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "ruby_wasm"
7
- spec.version = RubyWasm::VERSION
8
- spec.authors = ["Yuta Saito"]
9
- spec.email = ["kateinoigakukun@gmail.com"]
10
-
11
- spec.summary = %q{Ruby to WebAssembly toolkit}
12
- spec.description = %q{Ruby to WebAssembly toolkit. This gem takes Ruby code and Gemfile, and packages them with Ruby runtime into a WebAssembly binary.}
13
- spec.homepage = "https://github.com/ruby/ruby.wasm"
14
- spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.6.0"
16
-
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = spec.homepage
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(__dir__) do
23
- `git ls-files -z`.split("\x0").reject do |f|
24
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) ||
25
- f.match(%r{\Apackages/})
26
- end
27
- end
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.require_paths = ["lib"]
31
- spec.extensions = ["ext/ruby_wasm/Cargo.toml"]
32
- end
File without changes
File without changes