Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
keithdoggett committed Jun 10, 2024
1 parent 9a90cfc commit a47294b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ test/dummy/storage/
test/dummy/tmp/
test/dummy/test
tmp/
Gemfile.lock
Gemfile.lock
.ruby-version
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
TargetRubyVersion: 3.1

Metrics/MethodLength:
Enabled: false

Expand Down
6 changes: 3 additions & 3 deletions spatial_stats.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
'inside your rails app. Supports contiguious and distance-based'\
' calculations.'
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
Expand All @@ -41,8 +41,8 @@ Gem::Specification.new do |spec|

spec.add_dependency 'numo-narray', '~>0.9.1'
spec.add_dependency 'rails', '>= 6.0.0'
spec.add_development_dependency 'activerecord-postgis-adapter', '~> 6.0.0'
spec.add_development_dependency 'database_cleaner', '~> 1.8.3'
spec.add_development_dependency 'activerecord-postgis-adapter', '>= 6.0.0'
spec.add_development_dependency 'database_cleaner', '~> 2.0.2'
spec.add_development_dependency 'pg', '~> 1.0'
spec.add_development_dependency 'rake-compiler', '~>1.1.0'
spec.add_development_dependency 'ruby-prof', '~> 1.3.1'
Expand Down
2 changes: 1 addition & 1 deletion test/dummy/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.6.3
ruby-3.3
2 changes: 1 addition & 1 deletion test/dummy/config/initializers/assets.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Be sure to restart your server when you modify this file.

# Version of your assets, change this if you want to expire all your assets.
Rails.application.config.assets.version = '1.0'
# Rails.application.config.assets.version = '1.0'

# Add additional assets to the asset load path.
# Rails.application.config.assets.paths << Emoji.images_path
Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

require 'database_cleaner'
class ActiveSupport::TestCase
ActiveRecord::Migration.check_pending!
ActiveRecord::Migration.check_all_pending!
DatabaseCleaner.strategy = :truncation
setup { DatabaseCleaner.start }
teardown { DatabaseCleaner.clean }
Expand Down

0 comments on commit a47294b

Please sign in to comment.