Skip to content

Commit

Permalink
updated gemfile to load the development branch of guard-haml, as that…
Browse files Browse the repository at this point in the history
…'s the only version that allows the guard to run at start
  • Loading branch information
keegan committed Aug 13, 2012
1 parent 4ccc326 commit d4d5cb9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ source 'http://rubygems.org'

gem 'guard'
gem 'guard-coffeescript'
gem 'guard-haml'
#gem 'guard-haml'
gem 'guard-haml', :git => 'git://github.com/manufaktor/guard-haml.git', :branch => 'development'
gem 'guard-sass'
16 changes: 11 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
GIT
remote: git://github.com/manufaktor/guard-haml.git
revision: ee19e704c5afface900d18ba7f9ad90993712d02
branch: development
specs:
guard-haml (0.4)
guard (>= 1.1)
haml (>= 3.0)

GEM
remote: http://rubygems.org/
specs:
Expand All @@ -14,13 +23,10 @@ GEM
guard-coffeescript (1.2.0)
coffee-script (>= 2.2.0)
guard (>= 1.1.0)
guard-haml (0.4)
guard (>= 1.1)
haml (>= 3.0)
guard-sass (1.0.0)
guard (>= 1.1.0)
sass (>= 3.1)
haml (3.1.6)
haml (3.1.7)
listen (0.4.7)
rb-fchange (~> 0.0.5)
rb-fsevent (~> 0.9.1)
Expand All @@ -40,5 +46,5 @@ PLATFORMS
DEPENDENCIES
guard
guard-coffeescript
guard-haml
guard-haml!
guard-sass
8 changes: 4 additions & 4 deletions guardfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
notification :off

guard :coffeescript, :output => 'bin', :all_on_start => true do
watch %r{(.+\.coffee)}
end

guard 'haml', :output => 'bin', :run_at_start => true do
watch %r{(.+\.haml)}
end

guard 'coffeescript', :output => 'bin', :all_on_start => true do
watch %r{(.+\.coffee)}
end

guard 'sass', :output => 'bin', :all_on_start => true do
watch %r{(.+\.sass)}
end

0 comments on commit d4d5cb9

Please sign in to comment.