-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathRakefile
66 lines (53 loc) · 1.51 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
# frozen_string_literal: true
begin
require 'bundler'
rescue LoadError => e
warn e.message
warn "Run `gem install bundler` to install Bundler."
exit e.status_code
end
begin
Bundler.setup(:development)
rescue Bundler::BundlerError => e
warn e.message
warn "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'rubygems/tasks'
Gem::Tasks.new(sign: {checksum: true, pgp: true})
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
namespace :spec do
RSpec::Core::RakeTask.new(:network) do |t|
t.pattern = 'spec/network/{**/}*_spec.rb'
t.rspec_opts = '--tag network'
end
end
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new
task :docs => :yard
namespace :public_suffix do
desc 'Downloads the public_suffix_list.dat file'
task :download do
require 'ronin/support/network/public_suffix/list'
Ronin::Support::Network::PublicSuffix::List.download(
path: 'public_suffix_list.dat'
)
end
desc 'Builds a regex for every public suffix'
task :build_regex => :download do
require 'ronin/support/network/public_suffix/list'
list = Ronin::Support::Network::PublicSuffix::List.load_file(
'public_suffix_list.dat'
)
regex = list.to_regexp
template = 'data/text/patterns/network/public_suffix.rb.erb'
output = 'lib/ronin/support/text/patterns/network/public_suffix.rb'
require 'erb'
erb = ERB.new(File.read(template))
File.write(output,erb.result(binding))
end
end