class Guard::Ronn

Attributes

runner[R]

Public Class Methods

new(options = {}) click to toggle source
Calls superclass method
# File lib/guard/ronn.rb, line 13
def initialize(options = {})
  super
  @runner = Runner.new(@options)
end

Public Instance Methods

run_all() click to toggle source
# File lib/guard/ronn.rb, line 23
def run_all
  @runner.run(Inspector.ronn_files, message: 'Building all manuals')
end
run_on_changes(paths) click to toggle source
# File lib/guard/ronn.rb, line 27
def run_on_changes(paths)
  @runner.run(Inspector.clean(paths))
end
start() click to toggle source

Call once when guard starts

# File lib/guard/ronn.rb, line 19
def start
  Guard::Compat::UI.info "Guard::Ronn is running, with Ronn #{::Ronn.version}!"
end