2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-09 09:21:41 -05:00
|
|
|
desc "downloads MaxMind's GeoLite2-City database"
|
2019-05-27 19:28:57 -05:00
|
|
|
task "maxminddb:get" do
|
2023-01-09 06:10:19 -06:00
|
|
|
require "discourse_ip_info"
|
2019-10-03 18:47:22 -05:00
|
|
|
|
2019-04-10 04:37:29 -05:00
|
|
|
puts "Downloading MaxMindDb's GeoLite2-City..."
|
2023-01-09 06:10:19 -06:00
|
|
|
DiscourseIpInfo.mmdb_download("GeoLite2-City")
|
2018-10-09 09:21:41 -05:00
|
|
|
|
2019-04-10 04:37:29 -05:00
|
|
|
puts "Downloading MaxMindDb's GeoLite2-ASN..."
|
2023-01-09 06:10:19 -06:00
|
|
|
DiscourseIpInfo.mmdb_download("GeoLite2-ASN")
|
2018-10-09 09:21:41 -05:00
|
|
|
end
|