From a11bffd447145716bde03b33c6bb7729bad11827 Mon Sep 17 00:00:00 2001 From: Dimitris Koutsogiorgas Date: Tue, 7 Jul 2020 09:41:38 -0700 Subject: [PATCH] Add Ruby 2.7.0 CI support and bump Ruby minimum version --- .travis.yml | 5 +++-- Gemfile.lock | 2 +- cocoapods-downloader.gemspec | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fee04d0..b640cd5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,6 @@ addons: jobs: include: - - rvm: 2.0.0 - osx_image: xcode9 - rvm: 2.3.4 osx_image: xcode9 - rvm: 2.5.0 @@ -24,6 +22,9 @@ jobs: - rvm: 2.6.2 osx_image: xcode11.5 env: INSTALL_SVN=1 + - rvm: 2.7.0 + osx_image: xcode11.5 + env: INSTALL_SVN=1 before_install: # There is a bug in travis. When using system ruby, bundler is not diff --git a/Gemfile.lock b/Gemfile.lock index 5cc1a17..c29e872 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,7 +14,7 @@ GEM crack (0.4.2) safe_yaml (~> 1.0.0) docile (1.1.5) - ffi (1.9.6) + ffi (1.13.1) kicker (3.0.0) listen (~> 1.3.0) notify (~> 0.5.2) diff --git a/cocoapods-downloader.gemspec b/cocoapods-downloader.gemspec index 4476203..908639d 100644 --- a/cocoapods-downloader.gemspec +++ b/cocoapods-downloader.gemspec @@ -18,6 +18,6 @@ Gem::Specification.new do |s| ## Make sure you can build the gem on older versions of RubyGems too: s.rubygems_version = "1.6.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.required_ruby_version = '>= 2.0.0' + s.required_ruby_version = '>= 2.3.3' s.specification_version = 3 if s.respond_to? :specification_version end