Skip to content

Commit 8afd265

Browse files
committed
Add guard-livereload
1 parent 44d80a6 commit 8afd265

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ source "http://rubygems.org"
33

44
gem "haml", "3.1.4"
55
gem "compass", "~> 0.11.7"
6+
gem "compass-normalize"
67
gem "tilt", "~> 1.3.3"
78

89
gem "guard", "~> 1.0.0"
910
gem "guard-shell"
11+
gem "guard-livereload"

Gemfile.lock

+14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,31 @@
11
GEM
22
remote: http://rubygems.org/
33
specs:
4+
addressable (2.2.7)
45
chunky_png (1.2.5)
56
compass (0.11.7)
67
chunky_png (~> 1.2)
78
fssm (>= 0.2.7)
89
sass (~> 3.1)
10+
compass-normalize (1.1.1)
11+
compass (>= 0.11.5)
12+
em-websocket (0.3.6)
13+
addressable (>= 2.1.1)
14+
eventmachine (>= 0.12.9)
15+
eventmachine (0.12.10)
916
ffi (1.0.11)
1017
fssm (0.2.8.1)
1118
guard (1.0.0)
1219
ffi (>= 0.5.0)
1320
thor (~> 0.14.6)
21+
guard-livereload (0.4.2)
22+
em-websocket (>= 0.2.0)
23+
guard (>= 0.10.0)
24+
multi_json (~> 1.0)
1425
guard-shell (0.4.0)
1526
guard (>= 0.2.0)
1627
haml (3.1.4)
28+
multi_json (1.2.0)
1729
sass (3.1.15)
1830
thor (0.14.6)
1931
tilt (1.3.3)
@@ -23,7 +35,9 @@ PLATFORMS
2335

2436
DEPENDENCIES
2537
compass (~> 0.11.7)
38+
compass-normalize
2639
guard (~> 1.0.0)
40+
guard-livereload
2741
guard-shell
2842
haml (= 3.1.4)
2943
tilt (~> 1.3.3)

Guardfile

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ guard :shell do
88
watch(%r{^layout.html.haml$}) { `rake build:pages` }
99
watch(%r{^pages/.+\.html\.haml}) { `rake build:pages` }
1010
end
11+
12+
guard 'livereload' do
13+
watch(%r{^site(/.+)}) { |path| path }
14+
end

0 commit comments

Comments
 (0)