forked from weppos/whois
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
120 lines (85 loc) · 2.98 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
require 'rubygems'
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'whois'
# Common package properties
PKG_NAME = Whois::GEM
PKG_VERSION = Whois::VERSION
# Run test by default.
task :default => :spec
task :test => :spec
spec = Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = "An intelligent pure Ruby WHOIS client and parser."
s.description = "Whois is an intelligent WHOIS client and parser written in pure Ruby. It can query registry data for IPv4, IPv6 and top level domains, parse and convert responses into easy-to-use Ruby objects."
s.required_ruby_version = ">= 1.9.2"
s.authors = ["Simone Carletti"]
s.email = ["[email protected]"]
s.homepage = "http://www.ruby-whois.org/"
s.rubyforge_project = "whois"
s.files = %w( LICENSE.txt .yardopts ) +
Dir.glob("*.{md,gemspec}") +
Dir.glob("{bin,data,lib}/**/*")
s.executables = %w( ruby-whois )
s.require_paths = %w( lib )
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "mocha"
s.add_development_dependency "yard"
s.post_install_message = <<EOS
********************************************************************************
Thank you for installing the whois gem!
If you like this gem, please support the project.
http://pledgie.com/campaigns/11383
Does your project or organization use this gem? Add it to the apps wiki.
https://github.com/weppos/whois/wiki/apps
Are you looking for a quick and convenient way to perform WHOIS queries?
Check out RoboWhois WHOIS API.
https://www.robowhois.com/
********************************************************************************
EOS
end
require 'rubygems/package_task'
Gem::PackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
end
desc "Build the gemspec file #{spec.name}.gemspec"
task :gemspec do
file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
File.open(file, "w") {|f| f << spec.to_ruby }
end
desc "Remove any temporary products, including gemspec"
task :clean => [:clobber] do
rm "#{spec.name}.gemspec" if File.file?("#{spec.name}.gemspec")
end
desc "Remove any generated file"
task :clobber => [:clobber_package]
desc "Package the library and generates the gemspec"
task :package => [:gemspec]
require 'rspec/core/rake_task'
begin
require 'fuubar'
rescue LoadError
end
RSpec::Core::RakeTask.new do |t|
t.verbose = !!ENV["VERBOSE"]
t.rspec_opts = []
t.rspec_opts << ['--format', 'Fuubar'] if defined?(Fuubar)
end
require 'yard'
YARD::Rake::YardocTask.new(:yardoc) do |y|
y.options = ["--output-dir", "yardoc"]
end
namespace :yardoc do
task :clobber do
rm_r "yardoc" rescue nil
end
end
task :clobber => "yardoc:clobber"
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -I lib -r whois.rb"
end
Dir["tasks/**/*.rake"].each do |file|
load(file)
end