Skip to content

Commit 82e482f

Browse files
authored
Ruby 2.7 (#71)
1 parent 2201262 commit 82e482f

6 files changed

+8
-5
lines changed

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 2.3
2+
TargetRubyVersion: 2.5
33
Exclude:
44
- "vendor/**/*"
55
- "db/schema.rb"

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.7.2

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
language: ruby
22
cache: bundler
33
rvm:
4-
- 2.4
4+
- 2.5
5+
- 2.6
6+
- 2.7
57
addons:
68
apt:
79
packages:

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018-2019 Stuart Delivery
3+
Copyright (c) 2018-2020 Stuart Delivery
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ or add it to your Gemfile
3939

4040
```ruby
4141
# Gemfile
42-
gem "h3", "~> 3.2"
42+
gem "h3", "~> 3.7"
4343
```
4444

4545
## Usage

h3.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
99
spec.authors = ["Lachlan Laycock", "Sean Handley"]
1010
spec.email = "l.laycock@stuart.com"
1111

12-
spec.required_ruby_version = "> 2.3"
12+
spec.required_ruby_version = ">= 2.5"
1313
spec.files = `git ls-files --recurse-submodules`.split("\n")
1414

1515
spec.add_runtime_dependency "ffi", "~> 1.9"

0 commit comments

Comments
 (0)