0.0
No commit activity in last 3 years
No release in over 3 years
Autoclean Rails tmp directory
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
 Project Readme

tmp_autoclean

Autoclean Rails tmp directory for local development. Keep your application stateless and storage clean.

Installation

Add this line to your application's Gemfile and type bundle install:

gem 'tmp_autoclean'

Usage

Enable tmp directory autoclean:

Add line to config/initializers/development.rb

Rails.application.configure do
  # other configrations ...

  config.tmp_autoclean_enable = true
end

That it. After next rails server start up tmp/ folder will be cleaned.

Configuration

Clean specific tmp files

Add tmp_autoclean_options line to config/initializers/development.rb

Rails.application.configure do
  # other configrations ...

  config.tmp_autoclean_enable = true
  config.tmp_autoclean_options = %w[cache sockets pids screenshots] # full list of available options
end

License

The gem is available as open source under the terms of the MIT License.