aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Rakefile2
-rw-r--r--lib/tasks/norwegian-postcodes.rake13
2 files changed, 15 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index f8af56e..13a7fc7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,3 +1,5 @@
+load 'lib/tasks/norwegian-postcodes.rake'
+
desc "Run unit tests"
task "test" do
sh 'ruby -Itest/ test/*.rb'
diff --git a/lib/tasks/norwegian-postcodes.rake b/lib/tasks/norwegian-postcodes.rake
index e69de29..6ec53b7 100644
--- a/lib/tasks/norwegian-postcodes.rake
+++ b/lib/tasks/norwegian-postcodes.rake
@@ -0,0 +1,13 @@
+require 'uri'
+require 'open-uri'
+
+namespace :postcodes do
+ desc "Fetch postcode database from Bring"
+ task :fetch, [:data_path] do |t, args|
+ args.with_defaults(:data_path => 'data')
+ uri = URI.parse('http://www.bring.no/hele-bring/forside/_attachment/159761')
+ filename = File.join(args.data_path, 'Postnummerregister_ansi.txt')
+ puts "Downloading postcodes to: #{filename}..."
+ IO.write(filename, uri.read)
+ end
+end