mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 11:53:31 +08:00
7 lines
163 B
Ruby
Vendored
7 lines
163 B
Ruby
Vendored
#!/usr/bin/env rake
|
|
require "bundler/gem_tasks"
|
|
require "rspec/core/rake_task"
|
|
|
|
RSpec::Core::RakeTask.new(:test) do |spec|
|
|
spec.pattern = 'spec/*_spec.rb'
|
|
end
|