Skip to content

Commit

Permalink
Merge pull request #9 from matheussilvasantos/update-ruby
Browse files Browse the repository at this point in the history
Update to Ruby 3.3
  • Loading branch information
julien-duponchelle committed Jun 28, 2024
2 parents 13364db + 880ddc1 commit c679bde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
3.3.3
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.6-alpine
FROM ruby:3.3-alpine

RUN apk add --update git
LABEL "com.github.actions.name"="Stations Human Diff"
Expand Down
2 changes: 1 addition & 1 deletion lib/shd/diff_analyzer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def fetch_stations(params)
Logger.info "Fetching and parsing #{url} ..."

raw = URI.parse(url).open.read
CSV.parse(raw, CSV_PARAMETERS)
CSV.parse(raw, **CSV_PARAMETERS)
end

def group_by_id(stations, all_ids)
Expand Down

0 comments on commit c679bde

Please sign in to comment.