File: _guard-core

package info (click to toggle)
ruby-guard 2.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,344 kB
  • sloc: ruby: 9,256; makefile: 6
file content (11 lines) | stat: -rwxr-xr-x 216 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env ruby

require "guard"

begin
  require "guard/aruba_adapter"
rescue LoadError => e
  abort "#{e.inspect} - perhaps you need to run using `bundle exec`?"
end

Guard::ArubaAdapter.new(ARGV.dup).execute!