From: Andy Allan Date: Wed, 2 Nov 2022 18:33:32 +0000 (+0000) Subject: Use Pathname.glob to fetch the files X-Git-Tag: live~1027^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/b755db57a6854d11519d8f7d6d16007f802608ac?hp=af6fec502ac22d68224ec80bc925781955b0e842 Use Pathname.glob to fetch the files --- diff --git a/lib/osm_community_index.rb b/lib/osm_community_index.rb index fb3d7b28e..ca9d2d3b3 100644 --- a/lib/osm_community_index.rb +++ b/lib/osm_community_index.rb @@ -3,7 +3,7 @@ module OsmCommunityIndex # Filter the communities here to avoid loading excessive numbers of translations communities = Community.where(:type => "osm-lc").where.not(:id => "OSMF") - files = Dir.glob(Rails.root.join("node_modules/osm-community-index/i18n/*.yaml")) + files = Rails.root.glob("node_modules/osm-community-index/i18n/*.yaml") files.each do |file| locale = File.basename(file, ".yaml") community_locale_yaml = YAML.safe_load(File.read(file))[locale]