Skip to content

Commit

Permalink
Add Ruby 3.2 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
hkjasf687261gh authored Jun 17, 2023
1 parent bcd2dec commit ada80d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1']
ruby-version: ['2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion lib/gtfs/source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def load_archive(source)
end

def self.build(data_root, opts={})
if File.exists?(data_root)
if File.exist?(data_root)
src = LocalSource.new(data_root, opts)
else
src = URLSource.new(data_root, opts)
Expand Down

0 comments on commit ada80d6

Please sign in to comment.