Sha256: e7afd217d443ca46fb994fa109a41724d2b50bb3a29cfd61ee2a3fefa32af775
Contents?: true
Size: 1.61 KB
Versions: 2
Compression:
Stored size: 1.61 KB
Contents
require 'bundler' 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 puts "Can't load metric_fu" end desc "Sanitize sensitive info from cassettes" task :sanitize_cassettes do if ENV['OPENSRS_TEST_KEY'] && ENV['OPENSRS_TEST_URL'] && ENV['OPENSRS_TEST_USER'] && ENV['OPENSRS_TEST_PASS'] 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) puts "Sanitizing #{file}" old.gsub!(ENV['OPENSRS_TEST_KEY'], '123key') old.gsub!(ENV['OPENSRS_TEST_URL'], 'server.com') old.gsub!(ENV['OPENSRS_TEST_USER'], 'opensrs_user') old.gsub!(ENV['OPENSRS_TEST_PASS'], 'password') old.gsub!(/x-signature.*?\n.*?\w{32}/, "x-signature:\n - 00000000000000000000000000000000") old.gsub!(/\w{16}:\w{6}:\w{2,8}/, '0000000000000000:000000:00000') File.open(file, 'w') do |f| f.write old end end else puts "Nothing to sanitize" end else puts "I can't sanitize without setting up OPENSRS_TEST_KEY, OPENSRS_TEST_URL, OPENSRS_TEST_USER, and OPENSRS_TEST_PASS" end end RSpec::Core::RakeTask.new :spec Bundler::GemHelper.install_tasks 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\/ --comments} end task :default => [:spec]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
moo_moo-0.1.1 | Rakefile |
moo_moo-0.1.0 | Rakefile |