guard-livereload 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -2
- data/lib/guard/livereload/templates/Guardfile +1 -1
- data/lib/guard/livereload/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -47,12 +47,12 @@ Please read [Guard doc](http://github.com/guard/guard#readme) for more info abou
|
|
47
47
|
|
48
48
|
``` ruby
|
49
49
|
guard 'livereload' do
|
50
|
-
watch(%r{app/views/.+\.(erb|haml|slim)
|
50
|
+
watch(%r{app/views/.+\.(erb|haml|slim)})
|
51
51
|
watch(%r{app/helpers/.+\.rb})
|
52
52
|
watch(%r{public/.+\.(css|js|html)})
|
53
53
|
watch(%r{config/locales/.+\.yml})
|
54
54
|
# Rails Assets Pipeline
|
55
|
-
watch(%r{(app|vendor)(/assets/\w+/(.+\.(
|
55
|
+
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
|
56
56
|
end
|
57
57
|
```
|
58
58
|
|
@@ -4,5 +4,5 @@ guard 'livereload' do
|
|
4
4
|
watch(%r{public/.+\.(css|js|html)})
|
5
5
|
watch(%r{config/locales/.+\.yml})
|
6
6
|
# Rails Assets Pipeline
|
7
|
-
watch(%r{(app|vendor)(/assets/\w+/(.+\.(
|
7
|
+
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
|
8
8
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-livereload
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|