Class: Middleman::Cli::Base

Inherits:
Thor
  • Object
show all
Defined in:
middleman-core/lib/middleman-core/cli.rb

Overview

The base task from which everything else etends

Instance Method Summary (collapse)

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

- (Object) method_missing(meth, *args)

Intercept missing methods and search subtasks for them

Parameters:

  • meth (Symbol)


40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'middleman-core/lib/middleman-core/cli.rb', line 40

def method_missing(meth, *args)
  meth = meth.to_s
  
  if self.class.map.has_key?(meth)
    meth = self.class.map[meth]
  end
  
  klass, task = Thor::Util.find_class_and_task_by_namespace("#{meth}:#{meth}")
  
  if klass.nil?
    tasks_dir = File.join(Dir.pwd, "tasks")

    if File.exists?(tasks_dir)
      Dir[File.join(tasks_dir, "**/*_task.rb")].each { |f| require f }
      klass, task = Thor::Util.find_class_and_task_by_namespace("#{meth}:#{meth}")
    end
  end
  
  if klass.nil?
    super
  else
    args.unshift(task) if task
    klass.start(args, :shell => self.shell)
  end
end

Instance Method Details

- (void) help(meth = nil, subcommand = false)

This method returns an undefined value.

Override the Thor help method to find help for subtasks

Parameters:

  • meth (Symbol, String, nil) (defaults to: nil)
  • subcommand (Boolean) (defaults to: false)


21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'middleman-core/lib/middleman-core/cli.rb', line 21

def help(meth = nil, subcommand = false)
  if meth && !self.respond_to?(meth)
    klass, task = Thor::Util.find_class_and_task_by_namespace("#{meth}:#{meth}")
    klass.start(["-h", task].compact, :shell => self.shell)
  else
    list = []
    Thor::Util.thor_classes_in(Middleman::Cli).each do |klass|
      list += klass.printable_tasks(false)
    end
    list.sort!{ |a,b| a[0] <=> b[0] }
    
    shell.say "Tasks:"
    shell.print_table(list, :ident => 2, :truncate => true)
    shell.say
  end
end

- (Object) version



12
13
14
15
# File 'middleman-core/lib/middleman-core/cli.rb', line 12

def version
  require 'middleman-core/version'
  say "Middleman #{Middleman::VERSION}"
end