execjs-pcruntime 0.2.2 → 0.3.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.
- checksums.yaml +4 -4
- data/.github/workflows/check.yml +23 -0
- data/.github/workflows/test.yml +7 -2
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/execjs-pcruntime.gemspec +1 -1
- data/lib/execjs/pcruntime/context_process_runtime.rb +1 -0
- data/lib/execjs/pcruntime/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6f5cbb865a9d767748d30d1d4066d5739d93e218ba643a54872d49a139ed4dd
|
4
|
+
data.tar.gz: f8b27ca7a6faee4525e79f0252e2054afbe6d1698e85ddaeaf9602e62d4c392d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 315555b3b6d1b661abd6c4c37b95899d94abfa84e0b525e2211d77d7ade941a55aa4ee8f17d0ef314f71ae79e7fc3eea6c329b63ffb01aca459128b464d4652a
|
7
|
+
data.tar.gz: 4bdc7ecfb0cbf781fee0c27fcefc6a218c1dbd3916ba71e3e3c97729a7c676e633e5d1451cf20e44a26f2e65694de94cfc7e24757a3d3ba4af4b47ed4f19e969
|
@@ -0,0 +1,23 @@
|
|
1
|
+
name: Check
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ main ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ main ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
rubocop:
|
11
|
+
|
12
|
+
runs-on: ubuntu-latest
|
13
|
+
|
14
|
+
steps:
|
15
|
+
- uses: actions/checkout@v3
|
16
|
+
- name: Set up Ruby
|
17
|
+
uses: ruby/setup-ruby@v1
|
18
|
+
with:
|
19
|
+
ruby-version: '3.3'
|
20
|
+
- name: Install dependencies
|
21
|
+
run: bundle install
|
22
|
+
- name: Run RuboCop
|
23
|
+
run: bundle exec rubocop
|
data/.github/workflows/test.yml
CHANGED
@@ -13,7 +13,8 @@ jobs:
|
|
13
13
|
|
14
14
|
strategy:
|
15
15
|
matrix:
|
16
|
-
ruby-version: ['3.
|
16
|
+
ruby-version: ['3.3', '3.2', '3.1']
|
17
|
+
node-version: ['16', '18', '20', '22']
|
17
18
|
|
18
19
|
steps:
|
19
20
|
- uses: actions/checkout@v3
|
@@ -21,7 +22,11 @@ jobs:
|
|
21
22
|
uses: ruby/setup-ruby@v1
|
22
23
|
with:
|
23
24
|
ruby-version: ${{ matrix.ruby-version }}
|
25
|
+
- name: Set up Node.js ${{ matrix.node-version }}
|
26
|
+
uses: actions/setup-node@v4
|
27
|
+
with:
|
28
|
+
node-version: ${{ matrix.node-version }}
|
24
29
|
- name: Install dependencies
|
25
30
|
run: bundle install
|
26
31
|
- name: Run tests
|
27
|
-
run: bundle exec rake
|
32
|
+
run: bundle exec rake
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -60,7 +60,7 @@ bundle exec rake
|
|
60
60
|
|
61
61
|
## Contributing
|
62
62
|
|
63
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
63
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/heyinc/execjs-pcruntime. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
64
64
|
|
65
65
|
## License
|
66
66
|
|
@@ -68,4 +68,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
68
68
|
|
69
69
|
## Code of Conduct
|
70
70
|
|
71
|
-
Everyone interacting in the Execjs::Pcruntime project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
71
|
+
Everyone interacting in the Execjs::Pcruntime project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/heyinc/execjs-pcruntime/blob/master/CODE_OF_CONDUCT.md).
|
data/execjs-pcruntime.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = 'execjs-pcruntime'
|
9
9
|
spec.version = Execjs::PCRuntime::VERSION
|
10
10
|
spec.authors = ['White-Green']
|
11
|
-
spec.required_ruby_version = '>=3.
|
11
|
+
spec.required_ruby_version = '>=3.1.0'
|
12
12
|
spec.summary = 'Fast ExecJS Runtime using Process as a Context.'
|
13
13
|
spec.homepage = 'https://rubygems.org/gems/execjs-pcruntime'
|
14
14
|
spec.license = 'MIT'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: execjs-pcruntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- White-Green
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: execjs
|
@@ -30,6 +30,7 @@ executables: []
|
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files: []
|
32
32
|
files:
|
33
|
+
- ".github/workflows/check.yml"
|
33
34
|
- ".github/workflows/test.yml"
|
34
35
|
- ".gitignore"
|
35
36
|
- ".rubocop.yml"
|
@@ -69,14 +70,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
70
|
requirements:
|
70
71
|
- - ">="
|
71
72
|
- !ruby/object:Gem::Version
|
72
|
-
version: 3.
|
73
|
+
version: 3.1.0
|
73
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
75
|
requirements:
|
75
76
|
- - ">="
|
76
77
|
- !ruby/object:Gem::Version
|
77
78
|
version: '0'
|
78
79
|
requirements: []
|
79
|
-
rubygems_version: 3.
|
80
|
+
rubygems_version: 3.5.16
|
80
81
|
signing_key:
|
81
82
|
specification_version: 4
|
82
83
|
summary: Fast ExecJS Runtime using Process as a Context.
|