1 Star 0 Fork 3

过纯中/Rails

forked from Gitee 极速下载/Rails 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Rakefile 391 Bytes
一键复制 编辑 原始数据 按行查看 历史
# frozen_string_literal: true
require "rake/testtask"
task default: :test
Rake::TestTask.new do |t|
t.pattern = "test/**/*_test.rb"
t.warning = true
t.verbose = true
t.ruby_opts = ["--dev"] if defined?(JRUBY_VERSION)
end
namespace :test do
task :isolated do
Dir.glob("test/**/*_test.rb").all? do |file|
sh(Gem.ruby, "-w", file)
end || raise("Failures")
end
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Ruby
1
https://gitee.com/Eric-Guo/Rails.git
git@gitee.com:Eric-Guo/Rails.git
Eric-Guo
Rails
Rails
7-2-stable

搜索帮助