We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 718eaf2 commit 813c217Copy full SHA for 813c217
.github/workflows/docker.yml
@@ -6,6 +6,7 @@ on:
6
push:
7
branches:
8
- main
9
+ - *docker*
10
tags:
11
- v*
12
crates/rb-sys/src/utils.rs
@@ -43,7 +43,7 @@ pub(crate) unsafe fn is_ruby_vm_started() -> bool {
43
#[macro_export]
44
macro_rules! debug_ruby_assert_type {
45
($obj:expr, $type:expr, $message:expr) => {
46
- if $crate::RUBY_DEBUG != 0 {
+ if $crate::uncategorized::RUBY_DEBUG != 0 {
47
#[allow(clippy::macro_metavars_in_unsafe)]
48
unsafe {
49
assert!(
0 commit comments