forked from Bweeb/squall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
66 lines (59 loc) · 1.65 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
require 'bundler'
require 'uri'
begin
require 'rspec/core/rake_task'
rescue LoadError
puts "Please install rspec (bundle install)"
exit
end
begin
require 'metric_fu'
MetricFu::Configuration.run do |config|
config.rcov[:rcov_opts] << "-Ispec"
end
rescue LoadError
end
RSpec::Core::RakeTask.new :spec
Bundler::GemHelper.install_tasks
desc "Sanitize sensitive info from cassettes"
task :sanitize_cassettes do
yaml = File.join(ENV['HOME'], '.squall.yml')
if File.exists?(yaml)
config = YAML::load_file(yaml)
uri = URI.parse(config['base_uri']).host
user = config['username']
pass = config['password']
path = File.join(File.dirname(__FILE__), 'spec', 'vcr_cassettes')
files = Dir.glob("#{path}/**/*.yml")
if files.any?
files.each do |file|
old = File.read(file)
# if old.match(/#{uri}|#{user}|#{pass}/)
puts "Sanitizing #{file}"
old.gsub!(user, 'user')
old.gsub!(pass, 'pass')
old.gsub!(uri, 'www.example.com')
old.gsub!(/_onapp_session=(.*?);/, "_onapp_session=WHAT;")
old.gsub!(/- Basic .*/, "- Basic WHAT")
File.open(file, 'w') do |f|
f.write old
end
# end
end
else
puts "Nothing to sanitize"
end
else
puts "I can't sanitize without setting up WHM_HASH and WHM_HOST"
end
end
desc "Run all specs with rcov"
RSpec::Core::RakeTask.new(:rcov) do |t|
t.rcov = true
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/,features\/}
end
desc "Open an irb session preloaded with this library"
task :console do
sh "irb -rubygems -r ./lib/squall.rb -I ./lib"
end
task :default => [:spec]