Skip to content

Commit a1e6840

Browse files
authored
Ruby 3.1 support (#122)
* Update supported ruby version * Update bundler * Fix typo in README
1 parent 62f20fd commit a1e6840

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.1.2

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ rvm:
66
- 2.6.6
77
- 2.7.2
88
- 3.0.0
9+
- 3.1.2
910
before_install:
1011
- gem update --system
1112
- gem update bundler

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
## Getting Started
1717

18-
Before installing and using microformats-ruby, you'll want to have Ruby 2.4.10 (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).
18+
Before installing and using microformats-ruby, you'll want to have Ruby 2.4.10 (or newer) installed. It's recommended that you use a Ruby version management tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm).
1919

2020
microformats-ruby is developed using Ruby 2.7.1 and is additionally tested against versions 2.4.10, 2.5.8, and 2.6.6 using [Travis CI](https://travis-ci.org/microformats/microformats-ruby).
2121

microformats.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
44
require 'microformats/version'
55

66
Gem::Specification.new do |spec|
7-
spec.required_ruby_version = ['>= 2.4', '< 3.1']
7+
spec.required_ruby_version = ['>= 2.4', '< 3.2']
88

99
spec.name = 'microformats'
1010
spec.version = Microformats::VERSION
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323

2424
spec.post_install_message = 'Prior to version 4.0.0, the microformats gem was named "microformats2."'
2525

26-
spec.add_development_dependency 'bundler', '>= 1.16.2', '< 2.3'
26+
spec.add_development_dependency 'bundler', '>= 1.16.2', '< 2.4'
2727
spec.add_development_dependency 'guard-rspec', '~> 4.7'
2828
spec.add_development_dependency 'rake', '~> 12.3'
2929
spec.add_development_dependency 'rb-fsevent', '~> 0.10.3'

0 commit comments

Comments
 (0)