2 Star 0 Fork 0

mirrors_sporkmonger/rack-cache

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.autotest 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
Autotest.add_hook :initialize do |t|
t.clear_mappings
t.add_exception(/^(?:\/\.)?\.git.*/)
t.add_exception(/^(?:\/\.)?\[\..*/)
t.add_mapping(/^lib\/.*\.rb$/) { |fn, _|
t.files_matching(/^test\/#{File.basename(fn, '.rb')}_test.rb$/) }
t.add_mapping(/^test\/.*_test\.rb$/) { |fn, _| fn }
def t.path_to_classname(s)
case s
when 'test/test_cache.rb'
"Rack::Cache"
when /test\/(.*)_test\.rb/
"Rack::Cache::#{$1.capitalize}"
else
super
end
end
end
# vim: ft=ruby
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_sporkmonger/rack-cache.git
git@gitee.com:mirrors_sporkmonger/rack-cache.git
mirrors_sporkmonger
rack-cache
rack-cache
master

搜索帮助