0.04
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Guard plug-in that allows you to restart Unicorn
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.1
 Project Readme

Guard::Unicorn

Gem Version Build Status Code Climate Coverage Status

Guard::Unicorn automatically restarts the Unicorn server using [Guard] gu.

Installation

Using Rubygems:

$ gem install guard-unicorn

Using Bundler, add this to your Gemfile, preferably in the development group:

group :development
  gem 'guard-unicorn'
end

Add a sample Guard definition to your Guardfile:

$ guard init unicorn

Guard General Usage

Please read the [guard usage doc] gd in order to find out more about Guard and how to use Guards. There is also [a Railscast about Guard] gc, created by Ryan Bates.

It is recommended that you also install the [ruby-gntp] gntp on Mac OS X, [libnotify] ln on Linux, FreeBSD or Solaris or [rb-notifu] notifu in order to have graphical notifications.

Guardfile for guard-unicorn

guard :unicorn, :daemonized => true

Available options:

  • :daemonized run the Unicorn server as a daemon. Can be true or false. Defaults to false
  • :bundler use bundle exec to start Unicorn. Defaults to true.
  • :config_file path to the Unicorn config file. Defaults to config/unicorn.rb
  • :pid_file path to the Unicorn PID file. Defaults to tmp/pids/unicorn.pid
  • :preloading is Unicorn configured to preload the application? Defaults to false.
  • :port on what port to run Unicorn. Defaults to 8080.
  • :unicorn_rails use unicorn_rails command instead of unicorn. For ancient Rails versions. Defaults to false.