Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEV: Ruby 2.3. support has been dropped since 1.0.1. #449

Merged
merged 1 commit into from Jun 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@
language: ruby
cache: bundler
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,7 +1,7 @@
# frozen_string_literal: true

source 'http://rubygems.org'
ruby '>= 2.3.0'
ruby '>= 2.4.0'

gemspec

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion rack-mini-profiler.gemspec
Expand Up @@ -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',
Expand Down