Skip to content
This repository has been archived by the owner on Apr 25, 2019. It is now read-only.

Commit

Permalink
Expand supported Ruby versions to include 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarber623 committed Jan 3, 2019
1 parent dadc2da commit 4bc127b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: ruby
rvm:
- 2.4.5
- 2.5.3
- 2.6.0
cache:
- bundler
before_install:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ There are a couple ways you can help improve webmention-endpoint-ruby:

## Getting Started

webmention-endpoint-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).
webmention-endpoint-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).

Before making changes to webmention-endpoint-ruby, you'll want to install Ruby 2.4.5. It's recommended that you use a Ruby version managment tool like [rbenv](/~https://github.com/rbenv/rbenv), [chruby](/~https://github.com/postmodern/chruby), or [rvm](/~https://github.com/rvm/rvm). Once you've installed Ruby 2.4.5 using your method of choice, install the project's gems by running:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

Before installing and using webmention-endpoint-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.4 (or newer) installed. It's recommended that you use a Ruby version managment tool like [rbenv](/~https://github.com/rbenv/rbenv), [chruby](/~https://github.com/postmodern/chruby), or [rvm](/~https://github.com/rvm/rvm).

webmention-endpoint-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).
webmention-endpoint-ruby is developed using Ruby 2.4.5 and is additionally tested against Ruby 2.5.3 and 2.6.0 using [Travis CI](https://travis-ci.com/jgarber623/webmention-endpoint-ruby).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion webmention-endpoint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'webmention/endpoint/version'

Gem::Specification.new do |spec|
spec.required_ruby_version = ['>= 2.4', '< 2.6']
spec.required_ruby_version = ['>= 2.4', '< 2.7']

spec.name = 'webmention-endpoint'
spec.version = Webmention::Endpoint::VERSION
Expand Down

0 comments on commit 4bc127b

Please sign in to comment.