Class: Guard::Lono

Inherits:
Plugin
  • Object
show all
Defined in:
lib/guard/lono.rb

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Lono

Initialize a Guard.

Parameters:

  • options (Hash) (defaults to: {})

    the custom Guard options



9
10
11
12
13
14
15
# File 'lib/guard/lono.rb', line 9

def initialize(options = {})
  @options = {
    :all_on_start => true,
    :notification => true,
  }.merge(options)
  super(@options)
end

Instance Method Details

#run_allObject

Called when just ‘enter` is pressed This method should be principally used for long action like running all specs/tests/…

Raises:

  • (:task_has_failed)

    when run_all has failed



26
27
28
# File 'lib/guard/lono.rb', line 26

def run_all
  run!
end

#run_on_change(paths) ⇒ Object

Called on file(s) modifications that the Guard watches.

Parameters:

  • paths (Array<String>)

    the changes files or paths

Raises:

  • (:task_has_failed)

    when run_on_change has failed



33
34
35
# File 'lib/guard/lono.rb', line 33

def run_on_change(paths)
  run!
end

#startObject

Call once when Guard starts. Please override initialize method to init stuff.

Raises:

  • (:task_has_failed)

    when start has failed



19
20
21
# File 'lib/guard/lono.rb', line 19

def start
  run_all if @options[:all_on_start]
end