Sha256: faa2fe5412222da0ec1e9d97a70db7ba9410165c16d0818ff23cc7387f81d9c6

Contents?: true

Size: 529 Bytes

Versions: 5

Compression:

Stored size: 529 Bytes

Contents

require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList['test/**/*_test.rb']
end

desc "Print help information"
task default: :help

desc "Print help information"
task :help do
  system "bundle exec rake -D"
end

desc "Compile all project Ruby files with warnings."
task :compile do
  paths = Dir["**/*.rb", "**/*.gemspec", 'exe/broken_link_finder']
  paths.each do |f|
    puts "\nCompiling #{f}..."
    puts `ruby -cw #{f}`
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
broken_link_finder-0.8.1 Rakefile
broken_link_finder-0.8.0 Rakefile
broken_link_finder-0.7.0 Rakefile
broken_link_finder-0.6.0 Rakefile
broken_link_finder-0.5.0 Rakefile