mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
Move Rake tasks into subfolder.
This commit is contained in:
parent
5b20e39ca0
commit
fea05694ef
3 changed files with 9 additions and 7 deletions
9
Rakefile
9
Rakefile
|
@ -1,8 +1,3 @@
|
||||||
require 'bundler/gem_tasks'
|
Dir["tasks/**/*.task"].each { |task| load task }
|
||||||
require 'rake/testtask'
|
|
||||||
|
|
||||||
Rake::TestTask.new do |t|
|
task :default => :test
|
||||||
t.pattern = 'test/**/test_*.rb'
|
|
||||||
end
|
|
||||||
|
|
||||||
task default: :test
|
|
||||||
|
|
1
tasks/bundler.task
Normal file
1
tasks/bundler.task
Normal file
|
@ -0,0 +1 @@
|
||||||
|
require 'bundler/gem_tasks'
|
6
tasks/minitest.task
Normal file
6
tasks/minitest.task
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
require 'rake/testtask'
|
||||||
|
|
||||||
|
Rake::TestTask.new do |t|
|
||||||
|
t.pattern = 'test/**/test_*.rb'
|
||||||
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue