Sha256: a5c5a32eaf5d45a96279374d356ef4174ddd6e9cf28712876a902f39f67c15b9

Contents?: true

Size: 810 Bytes

Versions: 1

Compression:

Stored size: 810 Bytes

Contents

require 'bundler/gem_tasks'
require 'rake/testtask'

task :console do
  sh "irb -I lib -r geokit"
end

Rake::TestTask.new do |t|
  t.libs << 'test'
  t.test_files = FileList['test/test*.rb']
  t.verbose = true
end

desc 'Downloads GeoLiteCity.dat from maxmind.com'
task :download_geolitecity do
  total_size = nil
  url = 'http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz'
  progress_cb = lambda { |size| print("Downloaded #{size} of #{total_size} bytes\r") if total_size }
  length_cb = lambda { |content_length| total_size = content_length }
  require 'open-uri'
  File.open('/tmp/GeoLiteCity.dat.gz', 'wb') do |f|
    open(url, 'rb', progress_proc: progress_cb, content_length_proc: length_cb) do |downloaded_file|
      f.write(downloaded_file.read)
    end
  end
  puts "\nDone."
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
geokit-1.14.0 Rakefile