module Hoe::Travis
def travis_fake_config
def travis_fake_config fake_hoerc = File.expand_path '~/.hoerc' return if File.exist? fake_hoerc config = { 'exclude' => /\.(git|travis)/ } open fake_hoerc, 'w' do |io| YAML.dump config, io end end
def travis_fake_config fake_hoerc = File.expand_path '~/.hoerc' return if File.exist? fake_hoerc config = { 'exclude' => /\.(git|travis)/ } open fake_hoerc, 'w' do |io| YAML.dump config, io end end