Skip to content

Commit dec18d9

Browse files
authored
Merge pull request #265 from ruby-i18n/movermeyer/modern_ruby
Drop Ruby 2 support
2 parents 25a7f83 + 1e3e9dc commit dec18d9

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
ruby-version: ['2.7', '3.0', '3.1', '3.2']
16+
ruby-version: ["3.0", "3.1", "3.2"]
1717
cldr-version: [41]
1818

1919
steps:

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inherit_gem:
55
rubocop-shopify: rubocop.yml
66

77
AllCops:
8-
TargetRubyVersion: 2.7
8+
TargetRubyVersion: 3.0
99
UseCache: true
1010
CacheRootDirectory: tmp/rubocop
1111
NewCops: enable

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4545
- `Numbers` component now outputs data from all number systems, [#189](https://github.com/ruby-i18n/ruby-cldr/pull/189)
4646
- Use `snake_case` for key names unless they are an external identifier, [#207](https://github.com/ruby-i18n/ruby-cldr/pull/207)
4747
- Add `WeekData` component, [#229](https://github.com/ruby-i18n/ruby-cldr/pull/229)
48+
- Drop support for Ruby 2, [#265](https://github.com/ruby-i18n/ruby-cldr/pull/265)
4849

4950
---
5051

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ GEM
4545
language_server-protocol (3.17.0.3)
4646
method_source (1.0.0)
4747
mime-types (2.99.3)
48-
mini_portile2 (2.8.1)
48+
mini_portile2 (2.8.8)
4949
multi_json (1.13.1)
5050
multi_xml (0.6.0)
5151
multipart-post (2.0.0)
52-
nokogiri (1.14.3)
53-
mini_portile2 (~> 2.8.0)
52+
nokogiri (1.16.7)
53+
mini_portile2 (~> 2.8.2)
5454
racc (~> 1.4)
5555
oauth2 (1.4.1)
5656
faraday (>= 0.8, < 0.16.0)
@@ -70,7 +70,7 @@ GEM
7070
pry (>= 0.9.10, < 0.15)
7171
psych (5.1.0)
7272
stringio
73-
racc (1.6.2)
73+
racc (1.8.1)
7474
rack (2.2.6.4)
7575
rainbow (3.1.1)
7676
rake (13.0.1)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There are still a number of issues that need to be addressed before it can be co
1616

1717
## Requirements
1818

19-
* Ruby 2.7+
19+
* Ruby 3.0+
2020
* [Thor](http://whatisthor.com/)
2121

2222
## Installation

0 commit comments

Comments
 (0)