class Orphic::Mjolnir
Public Instance Methods
hello( name )
click to toggle source
# File lib/orphic/cli.rb, line 17 def hello( name ) greeting = "Hello, #{name}" greeting.upcase! if options[:upcase] CLI::UI::Frame.open( greeting ) do puts greeting + " from the frame" end end