Quick library to set the default pid file used by `rails server` to nil instead of tmp/pids/server.pid. Running non-daemonized, in a container, one doesn't really need the pidfile and this may allow use in a readonly environment. # Installation Add gem 'nopid_rails_server' to Gemfile Add to the bottom of config/boot.rb require 'nopid_rails_server'. Note that adding tings to config/boot.rb is generally a bad idea, and I'd love a suggestion of a Better Way. See here for rails initialization instructions: http://guides.rubyonrails.org/initialization.html#railties-lib-rails-app-loader-rb; this gem need to get in place before step 5.
Project
nopid_rails_server
This gem sets the default pidfile for rails server to be nil instead of tmp/pids/server.pid
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
Development
Dependencies
Project Readme