class Eks::CLI

Public Instance Methods

hello(name) click to toggle source
# File lib/eks/cli.rb, line 13
def hello(name)
  puts "from: #{options[:from]}" if options[:from]
  puts "Hello #{name}"
end