Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「rake tmp:clear」が tmp/capybara をクリアしないことに気付きました。「さらに別のレーキタスク」を実装する代わりに、デフォルトでこれを行う方法はありますか?
lib/tasks に clear.rake ファイルを作成するのと同じくらい簡単です。
require 'rake/clean' CLEAN.include('tmp/capybara/*.html')
これは実行時に自動的に取得されます
rake clear