This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
forked from countries/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
executable file
·90 lines (72 loc) · 2.58 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env rake
require 'bundler/gem_tasks'
require 'rake'
require 'rspec/core/rake_task'
ISO3166_ROOT_PATH = File.dirname(__FILE__)
Dir.glob('lib/countries/tasks/*.rake').each { |r| load r }
desc 'Run all examples'
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = %w[--color --warnings]
end
task default: [:spec]
task :update_yaml_structure do
require 'yaml'
require 'pry'
d = Dir['lib/countries/data/subdivisions/*.yaml']
d.each do |file|
puts "checking : #{file}"
data = YAML.load_file(file)
data = data.each_with_object({}) do |(k, subd), a|
a[k] ||= {}
a[k]['unofficial_names'] = subd.delete('names')
a[k]['translations'] = { 'en' => subd['name'] }
a[k]['geo'] = {
'latitude' => subd.delete('latitude'),
'longitude' => subd.delete('longitude'),
'min_latitude' => subd.delete('min_latitude'),
'min_longitude' => subd.delete('min_longitude'),
'max_latitude' => subd.delete('max_latitude'),
'max_longitude' => subd.delete('max_longitude')
}
a[k] = a[k].merge(subd)
end
File.open(file, 'w') { |f| f.write data.to_yaml }
begin
rescue
puts "failed to read #{file}: #{$ERROR_INFO}"
end
end
end
desc 'Update CLDR subdivison data set'
task :update_cldr_subdivison_data do
require_relative './lib/countries/sources'
Sources::CLDR::Downloader.subdivisions
Sources::CLDR::SubdivisionUpdater.new.call
end
desc 'Update Cache'
task :update_cache do
require 'yaml'
require 'i18n_data'
codes = Dir['lib/countries/data/countries/*.yaml'].map { |x| File.basename(x, File.extname(x)) }.uniq
data = {}
corrections = YAML.load_file(File.join(File.dirname(__FILE__), 'lib', 'countries', 'data', 'translation_corrections.yaml')) || {}
I18nData.languages.keys.each do |locale|
locale = locale.downcase
begin
local_names = I18nData.countries(locale)
rescue I18nData::NoTranslationAvailable
next
end
# Apply any known corrections to i18n_data
unless corrections[locale].nil?
corrections[locale].each do |alpha2, localized_name|
local_names[alpha2] = localized_name
end
end
File.open(File.join(File.dirname(__FILE__), 'lib', 'countries', 'cache', 'locales', "#{locale}.json"), 'wb') { |f| f.write(local_names.to_json) }
end
codes.each do |alpha2|
data[alpha2] ||= YAML.load_file(File.join(File.dirname(__FILE__), 'lib', 'countries', 'data', 'countries', "#{alpha2}.yaml"))[alpha2]
end
File.open(File.join(File.dirname(__FILE__), 'lib', 'countries', 'cache', 'countries.json'), 'wb') { |f| f.write(data.to_json) }
end