-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2364 from ruby/add-ruby-2-7
Support for Ruby 2.7
- Loading branch information
Showing
32 changed files
with
645 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.github/workflows/ruby-core.yml → .github/workflows/cruby-bindings.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Ruby Core | ||
name: CRuby bindings | ||
|
||
concurrency: | ||
group: "${{github.workflow}}-${{github.ref}}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Bindings to Chicory | ||
name: Java WASM bindings | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: JavaScript Bindings | ||
name: JavaScript bindings | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
--- | ||
name: Rust Bindings | ||
name: Rust bindings | ||
|
||
on: | ||
push: | ||
|
2 changes: 1 addition & 1 deletion
2
.github/workflows/truffleruby.yml → .github/workflows/truffleruby-bindings.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby "~> 2.7.0" | ||
|
||
gemspec path: "../.." | ||
|
||
gem "ffi" | ||
gem "parser" | ||
gem "rake" | ||
gem "rake-compiler" | ||
gem "rbs" | ||
gem "test-unit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
PATH | ||
remote: ../.. | ||
specs: | ||
prism (0.21.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
ffi (1.16.3) | ||
parser (3.3.0.5) | ||
ast (~> 2.4.1) | ||
racc | ||
power_assert (2.0.3) | ||
racc (1.7.3) | ||
rake (13.1.0) | ||
rake-compiler (1.2.7) | ||
rake | ||
rbs (3.1.3) | ||
test-unit (3.6.1) | ||
power_assert | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
ffi | ||
parser | ||
prism! | ||
rake | ||
rake-compiler | ||
rbs | ||
test-unit | ||
|
||
RUBY VERSION | ||
ruby 2.7.8p225 | ||
|
||
BUNDLED WITH | ||
2.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby "~> 3.0.0" | ||
|
||
gemspec path: "../.." | ||
|
||
gem "ffi" | ||
gem "parser" | ||
gem "rake" | ||
gem "rake-compiler" | ||
gem "rbs" | ||
gem "ruby_memcheck" | ||
gem "test-unit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
PATH | ||
remote: ../.. | ||
specs: | ||
prism (0.21.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
abbrev (0.1.2) | ||
ast (2.4.2) | ||
ffi (1.16.3) | ||
mini_portile2 (2.8.5) | ||
nokogiri (1.16.2) | ||
mini_portile2 (~> 2.8.2) | ||
racc (~> 1.4) | ||
parser (3.3.0.5) | ||
ast (~> 2.4.1) | ||
racc | ||
power_assert (2.0.3) | ||
racc (1.7.3) | ||
rake (13.1.0) | ||
rake-compiler (1.2.7) | ||
rake | ||
rbs (3.4.3) | ||
abbrev | ||
ruby_memcheck (2.3.0) | ||
nokogiri | ||
test-unit (3.6.1) | ||
power_assert | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
ffi | ||
parser | ||
prism! | ||
rake | ||
rake-compiler | ||
rbs | ||
ruby_memcheck | ||
test-unit | ||
|
||
RUBY VERSION | ||
ruby 3.0.6p216 | ||
|
||
BUNDLED WITH | ||
2.2.33 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby "~> 3.1.0" | ||
|
||
gemspec path: "../.." | ||
|
||
gem "ffi" | ||
gem "parser" | ||
gem "rake" | ||
gem "rake-compiler" | ||
gem "rbs" | ||
gem "ruby_memcheck" | ||
gem "test-unit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
PATH | ||
remote: ../.. | ||
specs: | ||
prism (0.21.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
abbrev (0.1.2) | ||
ast (2.4.2) | ||
ffi (1.16.3) | ||
mini_portile2 (2.8.5) | ||
nokogiri (1.16.2) | ||
mini_portile2 (~> 2.8.2) | ||
racc (~> 1.4) | ||
parser (3.3.0.5) | ||
ast (~> 2.4.1) | ||
racc | ||
power_assert (2.0.3) | ||
racc (1.7.3) | ||
rake (13.1.0) | ||
rake-compiler (1.2.7) | ||
rake | ||
rbs (3.4.3) | ||
abbrev | ||
ruby_memcheck (2.3.0) | ||
nokogiri | ||
test-unit (3.6.1) | ||
power_assert | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
ffi | ||
parser | ||
prism! | ||
rake | ||
rake-compiler | ||
rbs | ||
ruby_memcheck | ||
test-unit | ||
|
||
RUBY VERSION | ||
ruby 3.1.4p223 | ||
|
||
BUNDLED WITH | ||
2.3.26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
ruby "~> 3.2.0" | ||
|
||
gemspec path: "../.." | ||
|
||
gem "ffi" | ||
gem "parser" | ||
gem "rake" | ||
gem "rake-compiler" | ||
gem "rbs" | ||
gem "ruby_memcheck" | ||
gem "test-unit" |
Oops, something went wrong.