mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
Use geocoder from a private fork for debugging purposes.
This commit is contained in:
parent
3426f2d66b
commit
1c38f691cf
4 changed files with 16 additions and 5 deletions
|
|
@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
- Fixed a bug where points from Immich and Photoprism did not have lonlat attribute set. #1318
|
||||
|
||||
## Changed
|
||||
|
||||
- Geocoder is now being installed from a private fork for debugging purposes.
|
||||
|
||||
|
||||
# 0.27.4 - 2025-06-06
|
||||
|
||||
|
|
|
|||
2
Gemfile
2
Gemfile
|
|
@ -13,7 +13,7 @@ gem 'bootsnap', require: false
|
|||
gem 'chartkick'
|
||||
gem 'data_migrate'
|
||||
gem 'devise'
|
||||
gem 'geocoder'
|
||||
gem 'geocoder', github: 'Freika/geocoder', branch: 'master'
|
||||
gem 'gpx'
|
||||
gem 'groupdate'
|
||||
gem 'httparty'
|
||||
|
|
|
|||
14
Gemfile.lock
14
Gemfile.lock
|
|
@ -1,3 +1,12 @@
|
|||
GIT
|
||||
remote: https://github.com/Freika/geocoder.git
|
||||
revision: 12ac3e659fc5b57c1ffd12f04b8cad2f73d0939c
|
||||
branch: master
|
||||
specs:
|
||||
geocoder (1.8.5)
|
||||
base64 (>= 0.1.0)
|
||||
csv (>= 3.0.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
|
|
@ -162,9 +171,6 @@ GEM
|
|||
fugit (1.11.1)
|
||||
et-orbi (~> 1, >= 1.2.11)
|
||||
raabro (~> 1.4)
|
||||
geocoder (1.8.5)
|
||||
base64 (>= 0.1.0)
|
||||
csv (>= 3.0.0)
|
||||
globalid (1.2.1)
|
||||
activesupport (>= 6.1)
|
||||
gpx (1.2.0)
|
||||
|
|
@ -533,7 +539,7 @@ DEPENDENCIES
|
|||
factory_bot_rails
|
||||
ffaker
|
||||
foreman
|
||||
geocoder
|
||||
geocoder!
|
||||
gpx
|
||||
groupdate
|
||||
httparty
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
settings = {
|
||||
debug_mode: true,
|
||||
timeout: 5,
|
||||
units: :km,
|
||||
cache: Geocoder::CacheStore::Generic.new(Rails.cache, {}),
|
||||
|
|
|
|||
Loading…
Reference in a new issue