Sha256: c1e9c32c33104b6e1a81ebed7674d01d68e4f43e6c636c91791ba73a7200bcb3

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

require 'rubygems'

load 'test/tasks.rake'
 
desc 'Default: run unit tests.'
task :default => :test


namespace :gem do

  desc "Builds a ruby gem for request-log-analyzer"
  task :build => [:manifest] do
    system %[gem build request-log-analyzer.gemspec]
  end

  desc %{Update ".manifest" with the latest list of project filenames. Respect\
  .gitignore by excluding everything that git ignores. Update `files` and\
  `test_files` arrays in "*.gemspec" file if it's present.}
  task :manifest do
    list = Dir['**/*'].sort
    spec_file = Dir['*.gemspec'].first
    list -= [spec_file] if spec_file
  
    File.read('.gitignore').each_line do |glob|
      glob = glob.chomp.sub(/^\//, '')
      list -= Dir[glob]
      list -= Dir["#{glob}/**/*"] if File.directory?(glob) and !File.symlink?(glob)
      puts "excluding #{glob}"
    end
 
    if spec_file
      spec = File.read spec_file
      spec.gsub! /^(\s* s.(test_)?files \s* = \s* )( \[ [^\]]* \] | %w\( [^)]* \) )/mx do
        assignment = $1
        bunch = $2 ? list.grep(/^test.*_test\.rb$/) : list
        '%s%%w(%s)' % [assignment, bunch.join(' ')]
      end
      
      File.open(spec_file,   'w') {|f| f << spec }
    end
    File.open('.manifest', 'w') {|f| f << list.join("\n") }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wvanbergen-request-log-analyzer-0.1.0 Rakefile