Sha256: fbdcbb290ccb05adcc4d204e3ce0e8ae9122a73feaf3066798b7d5cba34046b6
Contents?: true
Size: 1.4 KB
Versions: 7
Compression:
Stored size: 1.4 KB
Contents
require 'rubygems' require 'rake' require 'bundler/setup' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "domain_prefix" gem.summary = "Domain Prefix Extraction Library" gem.description = "A library to extract information about top-level domain and registered name from generic and international domain names" gem.email = "github@tadman.ca" gem.homepage = "http://github.com/twg/domain_prefix" gem.authors = %w[ tadman ] end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/test_*.rb' test.verbose = true end namespace :domain_prefix do desc "Update the domain information" task :update do require 'open-uri' open("https://publicsuffix.org/list/effective_tld_names.dat") do |source| open(File.expand_path(File.join('data', 'effective_tld_names.dat'), File.dirname(__FILE__)), 'w') do |dest| dest.write(source.read) end end open("http://mxr.mozilla.org/mozilla-central/source/netwerk/test/unit/data/test_psl.txt?raw=1") do |source| open(File.expand_path(File.join('test', 'sample', 'test.txt'), File.dirname(__FILE__)), 'w') do |dest| dest.write(source.read) end end end end task :default => [ :test ]
Version data entries
7 entries across 7 versions & 1 rubygems