guard-livereload 1.1.0 → 1.1.1
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 +4 -4
data/README.md
CHANGED
@@ -52,7 +52,7 @@ guard 'livereload' do
|
|
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+/(.+\.(css|js|html)).*})
|
55
|
+
watch(%r{(app|vendor)(/assets/\w+/(.+\.(css|js|html))).*}) { |m| "/assets/#{m[3]}" }
|
56
56
|
end
|
57
57
|
```
|
58
58
|
|
@@ -95,4 +95,4 @@ For questions please join us on our [Google group](http://groups.google.com/grou
|
|
95
95
|
|
96
96
|
## Author
|
97
97
|
|
98
|
-
[Thibaud Guillaume-Gentil](https://github.com/thibaudgg)
|
98
|
+
[Thibaud Guillaume-Gentil](https://github.com/thibaudgg)
|
@@ -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+/(.+\.(css|js|html)).*})
|
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.1
|
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-11-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '1.
|
69
|
+
version: '1.1'
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -74,7 +74,7 @@ dependencies:
|
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: '1.
|
77
|
+
version: '1.1'
|
78
78
|
- !ruby/object:Gem::Dependency
|
79
79
|
name: rspec
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|