rerun 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +1 -1
  2. data/lib/rerun.rb +1 -1
  3. data/rerun.gemspec +1 -1
  4. metadata +1 -1
data/README.md CHANGED
@@ -52,7 +52,7 @@ but you want it on port 4000 and in debug mode:
52
52
 
53
53
  --dir directory to watch (default = ".")
54
54
 
55
- --pattern glob to match inside directory. This uses the Ruby Dir glob style -- see <http://www.ruby-doc.org/core/classes/Dir.html#M002322> for details. By default it watches .rb, .js, and .css files.
55
+ --pattern glob to match inside directory. This uses the Ruby Dir glob style -- see <http://www.ruby-doc.org/core/classes/Dir.html#M002322> for details. By default it watches .rb, .erb, .js, and .css files.
56
56
 
57
57
  Also --version and --help.
58
58
 
data/lib/rerun.rb CHANGED
@@ -6,7 +6,7 @@ require "fswatcher"
6
6
  # todo: make sure this works in non-Mac environments (also Macs without growlnotify)
7
7
  module Rerun
8
8
 
9
- DEFAULT_PATTERN = "**/*.{rb,js,css}"
9
+ DEFAULT_PATTERN = "**/*.{rb,js,css,erb}"
10
10
 
11
11
  class Runner
12
12
 
data/rerun.gemspec CHANGED
@@ -3,7 +3,7 @@ $spec = Gem::Specification.new do |s|
3
3
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
4
4
 
5
5
  s.name = 'rerun'
6
- s.version = '0.5.1'
6
+ s.version = '0.5.2'
7
7
  s.date = '2009-12-03'
8
8
 
9
9
  s.description = "Restarts your app when a file changes"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rerun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Chaffee