File: Guardfile

package info (click to toggle)
ruby-simplecov-html 0.12.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,660 kB
  • sloc: javascript: 20,320; ruby: 118; makefile: 15
file content (14 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard "bundler" do
  watch("Gemfile")
  # Uncomment next line if Gemfile contain `gemspec' command
  # watch(/^.+\.gemspec/)
end

guard "rake", :task => "assets:compile" do
  watch(%r{^assets\/})
end