From 23bb69a67158087effe0c95b9a43104e16efa3ff Mon Sep 17 00:00:00 2001 From: Viuginov Nickolay Date: Fri, 13 Sep 2019 16:18:08 +0300 Subject: [PATCH 1/2] downgrade debase --- lib/debase/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/debase/version.rb b/lib/debase/version.rb index 33a373e..6424e70 100644 --- a/lib/debase/version.rb +++ b/lib/debase/version.rb @@ -1,3 +1,3 @@ module Debase - VERSION = "0.2.5" unless defined? VERSION + VERSION = "0.2.4.1" unless defined? VERSION end From 5b2d06665432cbc99a77e759af9f0509a04cca39 Mon Sep 17 00:00:00 2001 From: Viuginov Nickolay Date: Wed, 9 Oct 2019 13:54:53 +0300 Subject: [PATCH 2/2] fix debase installation on MacOS system ruby --- ext/attach/extconf.rb | 8 ++------ ext/extconf.rb | 8 ++------ lib/debase/version.rb | 2 +- 3 files changed, 5 insertions(+), 13 deletions(-) diff --git a/ext/attach/extconf.rb b/ext/attach/extconf.rb index fc91000..0556056 100644 --- a/ext/attach/extconf.rb +++ b/ext/attach/extconf.rb @@ -29,12 +29,8 @@ hdrs = proc { have_header("vm_core.h") and - have_header("iseq.h") and - have_header("version.h") and - have_header("vm_core.h") and - have_header("vm_insnhelper.h") and - have_header("vm_core.h") and - have_header("method.h") + (have_header("iseq.h") or have_header("iseq.h", ["vm_core.h"])) and + have_header("version.h") } # Allow use customization of compile options. For example, the diff --git a/ext/extconf.rb b/ext/extconf.rb index 3c41372..bd5ecdf 100644 --- a/ext/extconf.rb +++ b/ext/extconf.rb @@ -29,12 +29,8 @@ hdrs = proc { have_header("vm_core.h") and - have_header("iseq.h") and - have_header("version.h") and - have_header("vm_core.h") and - have_header("vm_insnhelper.h") and - have_header("vm_core.h") and - have_header("method.h") + (have_header("iseq.h") or have_header("iseq.h", ["vm_core.h"])) and + have_header("version.h") } # Allow use customization of compile options. For example, the diff --git a/lib/debase/version.rb b/lib/debase/version.rb index 6424e70..713ec3c 100644 --- a/lib/debase/version.rb +++ b/lib/debase/version.rb @@ -1,3 +1,3 @@ module Debase - VERSION = "0.2.4.1" unless defined? VERSION + VERSION = "0.2.5.beta1" unless defined? VERSION end