Class: Guard::DslDescriber

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

Overview

The DslDescriber evaluates the Guardfile and creates an internal structure of it that is used in some inspection utility methods like the CLI commands ‘show` and `list`.

See Also:

Instance Method Summary collapse

Constructor Details

#initialize(options = nil) ⇒ DslDescriber

Returns a new instance of DslDescriber.



20
21
22
# File 'lib/guard/dsl_describer.rb', line 20

def initialize(options = nil)
  fail "options passed to DslDescriber are ignored!" unless options.nil?
end

Instance Method Details

#listObject

List the Guard plugins that are available for use in your system and marks those that are currently used in your ‘Guardfile`.

See Also:



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/guard/dsl_describer.rb', line 29

def list
  # TODO: remove dependency on Guard in this whole file
  # collect metadata
  data = PluginUtil.plugin_names.sort.inject({}) do |hash, name|
    hash[name.capitalize] = Guard.state.session.plugins.all(name).any?
    hash
  end

  # presentation
  header = [:Plugin, :Guardfile]
  final_rows = []
  data.each do |name, used|
    final_rows << { Plugin: name, Guardfile: used ? "" : "" }
  end

  # render
  Formatador.display_compact_table(final_rows, header)
end

#notifiersObject

Shows all notifiers and their options that are defined in the ‘Guardfile`.

See Also:



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/guard/dsl_describer.rb', line 109

def notifiers
  supported = Notifier.supported
  Notifier.connect(notify: true, silent: true)
  detected = Notifier.detected
  Notifier.disconnect

  detected_names = detected.map { |item| item[:name] }

  final_rows = supported.each_with_object([]) do |(name, _), rows|
    available = detected_names.include?(name) ? "" : ""

    notifier = detected.detect { |n| n[:name] == name }
    used = notifier ? "" : ""

    options = notifier ? notifier[:options] : {}

    if options.empty?
      rows << :split
      _add_row(rows, name, available, used, "", "")
    else
      options.each_with_index do |(option, value), index|
        if index == 0
          rows << :split
          _add_row(rows, name, available, used, option.to_s, value.inspect)
        else
          _add_row(rows, "", "", "", option.to_s, value.inspect)
        end
      end
    end

    rows
  end

  Formatador.display_compact_table(
    final_rows.drop(1),
    [:Name, :Available, :Used, :Option, :Value]
  )
end

#showObject

Shows all Guard plugins and their options that are defined in the ‘Guardfile`.

See Also:



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/guard/dsl_describer.rb', line 53

def show
  # collect metadata
  groups = Guard.state.session.groups.all

  objects = []

  empty_plugin = OpenStruct.new
  empty_plugin.options = [["", nil]]

  groups.each do |group|
    plugins = Array(Guard.state.session.plugins.all(group: group.name))
    plugins = [empty_plugin] if plugins.empty?
    plugins.each do |plugin|
      options = plugin.options
      options = [["", nil]] if options.empty?
      options.each do |option, raw_value|
        value = raw_value.nil? ? "" : raw_value.inspect
        objects << [group.title, plugin.title, option.to_s, value]
      end
    end
  end

  # presentation
  rows = []
  prev_group = prev_plugin = prev_option = prev_value = nil
  objects.each do |group, plugin, option, value|
    group_changed = prev_group != group
    plugin_changed = (prev_plugin != plugin || group_changed)

    rows << :split if group_changed || plugin_changed

    rows << {
      Group: group_changed ? group : "",
      Plugin: plugin_changed ? plugin : "",
      Option: option,
      Value: value
    }

    prev_group = group
    prev_plugin = plugin
    prev_option = option
    prev_value = value
  end

  # render
  Formatador.display_compact_table(
    rows.drop(1),
    [:Group, :Plugin, :Option, :Value]
  )
end