From c34096254bfcd61468a790c9f69c6ff54636ba2b Mon Sep 17 00:00:00 2001 From: Taichi Ishitani Date: Tue, 2 Jun 2020 00:17:35 +0900 Subject: [PATCH] removed workaround for rubyzip/rubyzip#431 --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 7973d38..67abaa8 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ group :rggen do instance_eval(File.read(gemfile_path), gemfile_path, 1) if ENV['USE_FIXED_GEMS'] == 'yes' - ['facets', 'rubyzip'].each do |library| + ['facets'].each do |library| library_path = File.expand_path("../#{library}", __dir__) if Dir.exist?(library_path) && !ENV['USE_GITHUB_REPOSITORY'] gem library, path: library_path @@ -22,6 +22,7 @@ group :rggen do end gem 'ruby-ole', '>= 1.2.12.2' + gem 'rubyzip', '>= 2.3.0' gem 'spreadsheet', '>= 1.2.1' end end