From c42c190cc05e0d091f3c95a8fe517168a0511666 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Tue, 23 Jun 2020 09:57:58 +0800 Subject: [PATCH] DEV: Ruby 2.3. support has been dropped since 1.0.1. (#449) --- .travis.yml | 1 - Gemfile | 2 +- README.md | 2 +- rack-mini-profiler.gemspec | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index cc702b08..618b9572 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ language: ruby cache: bundler rvm: - - 2.3 - 2.4 - 2.5 - 2.6 diff --git a/Gemfile b/Gemfile index f0564989..ae6c60a1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # frozen_string_literal: true source 'http://rubygems.org' -ruby '>= 2.3.0' +ruby '>= 2.4.0' gemspec diff --git a/README.md b/README.md index bf6374d8..1cbca576 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ If you feel like taking on any of this start an issue and update us on your prog ## Installation -Install/add to Gemfile in Ruby 2.3+ +Install/add to Gemfile in Ruby 2.4+ ```ruby gem 'rack-mini-profiler' diff --git a/rack-mini-profiler.gemspec b/rack-mini-profiler.gemspec index 8c89d81a..b5e3ca54 100644 --- a/rack-mini-profiler.gemspec +++ b/rack-mini-profiler.gemspec @@ -21,7 +21,7 @@ Gem::Specification.new do |s| "CHANGELOG.md" ] s.add_runtime_dependency 'rack', '>= 1.2.0' - s.required_ruby_version = '>= 2.3.0' + s.required_ruby_version = '>= 2.4.0' s.metadata = { 'source_code_uri' => 'https://github.com/MiniProfiler/rack-mini-profiler',