Sha256: 9f3c54ed21bf08a9c4129de7ad1281b14f22764fc3b2d8181c608debc342e2ba
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 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 = [ 'Scott 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://raw.githubusercontent.com/publicsuffix/list/master/public_suffix_list.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("https://raw.githubusercontent.com/publicsuffix/list/master/tests/test_psl.txt") 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
domain_prefix-0.4.20190409 | Rakefile |
domain_prefix-0.4.20180710 | Rakefile |
domain_prefix-0.4.20180130 | Rakefile |