11 lines
323 B
Ruby
11 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
desc "downloads MaxMind's GeoLite2-City database"
|
|
task "maxminddb:get" => "environment" do
|
|
puts "Downloading MaxMindDb's GeoLite2-City..."
|
|
DiscourseIpInfo.mmdb_download("GeoLite2-City")
|
|
|
|
puts "Downloading MaxMindDb's GeoLite2-ASN..."
|
|
DiscourseIpInfo.mmdb_download("GeoLite2-ASN")
|
|
end
|