Skip to content

Commit

Permalink
Merge pull request sharkipedia#1097 from sharkipedia/dependabot/bundl…
Browse files Browse the repository at this point in the history
…er/standard-1.33.0

Bump standard from 1.32.1 to 1.33.0
  • Loading branch information
coffeejunk authored Dec 28, 2023
2 parents 9da39a7 + 9d0c1c6 commit 30afc0f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ GEM
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (2.7.0)
json (2.7.1)
jsonapi-rspec (0.0.11)
rspec-core
rspec-expectations
Expand Down Expand Up @@ -280,7 +280,7 @@ GEM
paper_trail (15.1.0)
activerecord (>= 6.1)
request_store (~> 1.4)
parallel (1.23.0)
parallel (1.24.0)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
Expand Down Expand Up @@ -362,7 +362,7 @@ GEM
redis-client (>= 0.17.0)
redis-client (0.17.1)
connection_pool
regexp_parser (2.8.2)
regexp_parser (2.8.3)
reline (0.4.1)
io-console (~> 0.5)
request_store (1.5.1)
Expand Down Expand Up @@ -397,22 +397,22 @@ GEM
rspec-mocks (~> 3.12)
rspec-support (~> 3.12)
rspec-support (3.12.1)
rubocop (1.57.2)
rubocop (1.59.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-performance (1.20.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
ruby-graphviz (1.2.5)
rexml
ruby-progressbar (1.13.0)
Expand Down Expand Up @@ -446,18 +446,18 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
standard (1.32.1)
standard (1.33.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.57.2)
rubocop (~> 1.59.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.2)
standard-performance (~> 1.3)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.2.1)
standard-performance (1.3.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.19.1)
rubocop-performance (~> 1.20.1)
stringio (3.1.0)
thor (1.3.0)
tilt (2.2.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/import_xlsx.rb
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def import

# Latitude has a space at the end
location = Location.find_or_create_by name: row["Dataset_location"],
lat: (row["Latitude"] || row["Latitude "]),
lat: row["Latitude"] || row["Latitude "],
lon: row["Longitude"]
self.log += "#{location.inspect}\n"

Expand Down

0 comments on commit 30afc0f

Please sign in to comment.