[前][次][番号順一覧][スレッド一覧]

ruby-changes:62992

From: nagachika <ko1@a...>
Date: Thu, 17 Sep 2020 21:24:59 +0900 (JST)
Subject: [ruby-changes:62992] eb8270d675 (ruby_2_7): Skip bundler spec using irb with simulated JRuby environment.

https://git.ruby-lang.org/ruby.git/commit/?id=eb8270d675

From eb8270d67596fff58e245ff4227dd35e67dbef5c Mon Sep 17 00:00:00 2001
From: nagachika <nagachika@r...>
Date: Thu, 17 Sep 2020 21:23:39 +0900
Subject: Skip bundler spec using irb with simulated JRuby environment.


diff --git a/spec/bundler/other/platform_spec.rb b/spec/bundler/other/platform_spec.rb
index 8b02505..9f25637 100644
--- a/spec/bundler/other/platform_spec.rb
+++ b/spec/bundler/other/platform_spec.rb
@@ -954,6 +954,7 @@ G https://github.com/ruby/ruby/blob/trunk/spec/bundler/other/platform_spec.rb#L954
     end
 
     it "starts IRB with the default group loaded when ruby version matches any engine" do
+      skip "irb depend on JRuby.compile_ir and don't work in simulated environment." unless RUBY_ENGINE == "jruby"
       simulate_ruby_engine "jruby" do
         gemfile <<-G
           source "#{file_uri_for(gem_repo1)}"
diff --git a/version.h b/version.h
index 60886ef..d268146 100644
--- a/version.h
+++ b/version.h
@@ -2,11 +2,11 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L2
 # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 126
+#define RUBY_PATCHLEVEL 127
 
 #define RUBY_RELEASE_YEAR 2020
 #define RUBY_RELEASE_MONTH 9
-#define RUBY_RELEASE_DAY 16
+#define RUBY_RELEASE_DAY 17
 
 #include "ruby/version.h"
 
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]