From 8dfc615684d1504c018c460396dfc6a4ff2a2d7e Mon Sep 17 00:00:00 2001 From: Taichi Ishitani Date: Tue, 2 Jun 2020 00:07:57 +0900 Subject: [PATCH] removed workaround for rubyzip/rubyzip#431 --- Gemfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index da1c148..ddb5a5c 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 @@ -20,6 +20,8 @@ group :rggen do gem library, git: "https://github.com/taichi-ishitani/#{library}.git" end end + + gem 'rubyzip', '>= 2.3.0' end end