Class: Orphic::OrphicCli::Paji

Inherits:
Thor
  • Object
show all
Defined in:
lib/orphic/cli/sprites/paji.rb

Instance Method Summary collapse

Instance Method Details

#posPaji(currentPaji) ⇒ Object



14
15
16
17
18
19
# File 'lib/orphic/cli/sprites/paji.rb', line 14

def posPaji( currentPaji )
  # implement posPaji
  CLI::UI::Frame.open( "Paji :: Position : " + currentPaji ) do
    puts "#{currentPaji}"
  end
end

#updatePajiObject



26
27
28
29
30
31
32
33
# File 'lib/orphic/cli/sprites/paji.rb', line 26

def updatePaji ( )
  puts "previous option passed" if options[:previous]
  puts "next option passed" if options[:next]
  # implement updatePaji
  CLI::UI::Frame.open( "Paji :: Update") do
    puts "Paji updated"
  end
end