From b755db57a6854d11519d8f7d6d16007f802608ac Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 2 Nov 2022 18:33:32 +0000 Subject: [PATCH] Use Pathname.glob to fetch the files --- lib/osm_community_index.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.39.5