Skip to content
Snippets Groups Projects
Select Git revision
  • 24f17c8652558e78e8f51aa32aaee4c8e0e828cb
  • 2025ss default
  • 2024ss
  • 2023ss
  • 2022ss
  • 2021ss
  • 2020ss
  • 2019ss
  • 2018ss
  • 2017ss
  • 2016ss
  • 2015ss
  • 2014ss
13 results

Makefile-4

Blame
  • Rakefile 394 B
    # frozen_string_literal: true
    
    # Add your own tasks in files placed in lib/tasks ending in .rake,
    # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
    
    require_relative 'config/application'
    require 'rake/testtask'
    
    Rake::TestTask.new do |t|
      t.libs << "test"
      t.test_files = FileList['test/test*.rb']
      t.verbose = true
    end
    
    Rails.application.load_tasks