Skip to content
Snippets Groups Projects
Rakefile 246 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env rake
    # frozen_string_literal: true
    
    require 'bundler/gem_tasks'
    require 'rake/testtask'
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    
    Rake::TestTask.new(:test) do |t|
    
      t.libs << 'test'
      t.libs << 'lib'
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
      t.test_files = FileList['test/**/*_test.rb']
    end
    
    
    task default: :test