0.01
No commit activity in last 3 years
No release in over 3 years
Guard::WEBrick automatically starts and restarts WEBrick when needed.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
~> 1.0
~> 2.1.0
~> 0.0.1
 Project Readme

Guard::WEBrick

Build Status Code Climate

Guard::WEBrick automatically starts and restarts WEBrick when needed. Useful when you are working on a static site but want to benefit from Guard::LiveReload.

  • Tested on Ruby 1.9.3, 1.9.2, 1.8.7, Ruby Enterprise Edition, and JRuby (thanks TravisCI!)

Install

Please be sure to have Guard installed before continue.

Install the gem:

gem install guard-webrick

Add it to your Gemfile (inside test group):

gem 'guard-webrick'

Add guard definition to your Guardfile by running this command:

guard init webrick

Usage

Please read Guard usage doc

Guardfile

You can adapt your 'view' files like you want. Please read Guard doc for more info about Guardfile DSL.

guard 'webrick' do
end

Options

The WEBrick guard has 3 options that you can set like this:

guard 'webrick', :host => '127.0.0.1', :port => '35728', :docroot => 'public' do
  ...
end

Available options:

:host => '127.3.3.1'     # default '0.0.0.0'
:port => '12345'         # default '3000'
:ssl => true             # default false
:docroot => 'public'     # default current working directory
:launchy => false        # default true

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

== Authors

Fletcher Nichol