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
|
- 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
|
# 0.27.4 - 2025-06-06
|
||||||
|
|
||||||
|
|
|
||||||
2
Gemfile
2
Gemfile
|
|
@ -13,7 +13,7 @@ gem 'bootsnap', require: false
|
||||||
gem 'chartkick'
|
gem 'chartkick'
|
||||||
gem 'data_migrate'
|
gem 'data_migrate'
|
||||||
gem 'devise'
|
gem 'devise'
|
||||||
gem 'geocoder'
|
gem 'geocoder', github: 'Freika/geocoder', branch: 'master'
|
||||||
gem 'gpx'
|
gem 'gpx'
|
||||||
gem 'groupdate'
|
gem 'groupdate'
|
||||||
gem 'httparty'
|
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
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
|
|
@ -162,9 +171,6 @@ GEM
|
||||||
fugit (1.11.1)
|
fugit (1.11.1)
|
||||||
et-orbi (~> 1, >= 1.2.11)
|
et-orbi (~> 1, >= 1.2.11)
|
||||||
raabro (~> 1.4)
|
raabro (~> 1.4)
|
||||||
geocoder (1.8.5)
|
|
||||||
base64 (>= 0.1.0)
|
|
||||||
csv (>= 3.0.0)
|
|
||||||
globalid (1.2.1)
|
globalid (1.2.1)
|
||||||
activesupport (>= 6.1)
|
activesupport (>= 6.1)
|
||||||
gpx (1.2.0)
|
gpx (1.2.0)
|
||||||
|
|
@ -533,7 +539,7 @@ DEPENDENCIES
|
||||||
factory_bot_rails
|
factory_bot_rails
|
||||||
ffaker
|
ffaker
|
||||||
foreman
|
foreman
|
||||||
geocoder
|
geocoder!
|
||||||
gpx
|
gpx
|
||||||
groupdate
|
groupdate
|
||||||
httparty
|
httparty
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
debug_mode: true,
|
||||||
timeout: 5,
|
timeout: 5,
|
||||||
units: :km,
|
units: :km,
|
||||||
cache: Geocoder::CacheStore::Generic.new(Rails.cache, {}),
|
cache: Geocoder::CacheStore::Generic.new(Rails.cache, {}),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue