Class: Guard::Yamlsort

Inherits:
Plugin
  • Object
show all
Defined in:
lib/guard/yamlsort.rb,
lib/guard/yamlsort/file_sorter.rb

Defined Under Namespace

Classes: FileSorter

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Yamlsort

Initializes a Guard plugin. Don’t do any work here, especially as Guard plugins get initialized even if they are not in an active group!

Parameters:

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

    the custom Guard plugin options

Options Hash (options):

  • watchers (Array<Guard::Watcher>)

    the Guard plugin file watchers

  • group (Symbol)

    the group this Guard plugin belongs to

  • any_return (Boolean)

    allow any object to be returned from a watcher



17
18
19
# File 'lib/guard/yamlsort.rb', line 17

def initialize(options = {})
  super
end

Instance Method Details

#reloadObject

Called when ‘reload|r|z + enter` is pressed. This method should be mainly used for “reload” (really!) actions like reloading passenger/spork/bundler/…

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when reload has failed



45
46
47
# File 'lib/guard/yamlsort.rb', line 45

def reload
  true
end

#run_allObject

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

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when run_all has failed



55
56
57
# File 'lib/guard/yamlsort.rb', line 55

def run_all
  true
end

#run_on_additions(paths) ⇒ Object

Called on file(s) additions that the Guard plugin watches.

Parameters:

  • paths (Array<String>)

    the changes files or paths

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when run_on_additions has failed



64
65
66
# File 'lib/guard/yamlsort.rb', line 64

def run_on_additions(paths)
  true
end

#run_on_modifications(paths) ⇒ Object

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

Parameters:

  • paths (Array<String>)

    the changes files or paths

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when run_on_modifications has failed



74
75
76
77
# File 'lib/guard/yamlsort.rb', line 74

def run_on_modifications(paths)
  Guard::UI.info("Running YAML sorter.") 
  paths.each { |p| FileSorter.new(p) }
end

#run_on_removals(paths) ⇒ Object

Called on file(s) removals that the Guard plugin watches.

Parameters:

  • paths (Array<String>)

    the changes files or paths

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when run_on_removals has failed



85
86
87
# File 'lib/guard/yamlsort.rb', line 85

def run_on_removals(paths)
  true 
end

#startObject

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

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when start has failed



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

def start
  Guard::UI.info("Started YAML sorter.") 
end

#stopObject

Called when ‘stop|quit|exit|s|q|e + enter` is pressed (when Guard quits).

Returns:

  • (Object)

    the task result

Raises:

  • (:task_has_failed)

    when stop has failed



35
36
37
# File 'lib/guard/yamlsort.rb', line 35

def stop
  true
end