Sha256: 10fb47ac44f42c54b4229254ad4e20cec019ce2988d2e47d07ead1ea6fff3c21

Contents?: true

Size: 759 Bytes

Versions: 7

Compression:

Stored size: 759 Bytes

Contents

<% if self.sass -%>
<% if self.jammit -%>
guard "sass", :input => "sass", :output => "tmp"
<% else -%>
guard "sass", :input => "sass", :output => "public/stylesheets"
<% end -%>
<% end -%>
<% if self.coffeescript -%>
<% if self.jammit -%>
guard "coffeescript", :input => "coffeescripts", :output => "tmp"
<% else -%>
guard "coffeescript", :input => "coffeescripts", :output => "public/javascripts"
<% end -%>
<% if self.testing -%>
guard "coffeescript", :input => "spec", :output => "spec"
<% end -%>
<% end -%> 
<% if self.jammit -%>
guard "jammit" do
  watch(/^javascripts\/(.*)\.js/)
  watch(/^stylesheets\/(.*)\.css/)
<% if self.coffeescript -%>
  watch(/^tmp\/(.*)\.js/)
<% end -%>
<% if self.sass -%>
  watch(/^tmp\/(.*)\.css/)
<% end -%>
end
<% end -%>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
qedproject-0.2.1 templates/Guardfile
qedproject-0.2.0 templates/Guardfile
qedproject-0.1.1 templates/Guardfile
qedproject-0.1.0 templates/Guardfile
qedproject-0.0.9 templates/Guardfile
qedproject-0.0.8 templates/Guardfile
qedproject-0.0.5 templates/Guardfile