From d23dde8ac95468a31f51484caab60decd49da144 Mon Sep 17 00:00:00 2001 From: John Bachir Date: Sun, 7 Apr 2024 02:47:03 -0400 Subject: [PATCH 1/2] fix build --- ext/gitsh/src/line_editor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/gitsh/src/line_editor.c b/ext/gitsh/src/line_editor.c index 90942b99..905d01aa 100644 --- a/ext/gitsh/src/line_editor.c +++ b/ext/gitsh/src/line_editor.c @@ -1164,7 +1164,7 @@ readline_s_set_completer_word_break_characters(VALUE self, VALUE str) * Raises NotImplementedError if the using readline library does not support. */ static VALUE -readline_s_get_completer_word_break_characters(VALUE self, VALUE str) +readline_s_get_completer_word_break_characters(VALUE str) { if (rl_completer_word_break_characters == NULL) return Qnil; @@ -1282,7 +1282,7 @@ readline_s_set_completer_quote_characters(VALUE self, VALUE str) * Raises NotImplementedError if the using readline library does not support. */ static VALUE -readline_s_get_completer_quote_characters(VALUE self, VALUE str) +readline_s_get_completer_quote_characters(VALUE str) { if (rl_completer_quote_characters == NULL) return Qnil; From 671d78c9a234cc025d2928849058a4414ae1d1e0 Mon Sep 17 00:00:00 2001 From: John Bachir Date: Sun, 17 Nov 2024 12:33:57 -0500 Subject: [PATCH 2/2] more needed fixes? --- Gemfile.lock | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index d76c2c19..11e4ecd8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,7 +3,7 @@ GEM specs: coderay (1.1.2) diff-lcs (1.3) - ffi (1.10.0) + ffi (1.17.0) filigree (0.3.3) method_source (0.9.2) pry (0.12.2) @@ -33,3 +33,6 @@ DEPENDENCIES pry rltk rspec + +BUNDLED WITH + 2.5.23