Class: CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/teuton/cli.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *_args, &_block) ⇒ Object

These inputs are equivalents:

  • teuton dir/foo

  • teuton run dir/foo



96
97
98
# File 'lib/teuton/cli.rb', line 96

def method_missing(method, *_args, &_block)
  play(method.to_s)
end

Instance Method Details

#check(projectpath) ⇒ Object



35
36
37
# File 'lib/teuton/cli.rb', line 35

def check(projectpath)
  Teuton.check(projectpath, options)
end

#new(projectpath) ⇒ Object



13
14
15
# File 'lib/teuton/cli.rb', line 13

def new(projectpath)
  Teuton.create(projectpath)
end

#play(filepath) ⇒ Object



82
83
84
# File 'lib/teuton/cli.rb', line 82

def play(filepath)
  Teuton.run(filepath, options)
end

#readme(projectpath) ⇒ Object



51
52
53
54
# File 'lib/teuton/cli.rb', line 51

def readme(projectpath)
  # Create README from teuton test
  Teuton.readme(projectpath, options)
end

#respond_to_missing?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


100
101
102
103
# File 'lib/teuton/cli.rb', line 100

def respond_to_missing?(method_name, include_private = false)
  # Respond to missing methods name
  super
end

#versionObject



88
89
90
# File 'lib/teuton/cli.rb', line 88

def version
  puts "#{Teuton::APPNAME} version #{Teuton::VERSION}"
end