Class: KRL_CMD::Note

Inherits:
Object
  • Object
show all
Defined in:
lib/note.rb

Class Method Summary collapse

Class Method Details

.go(options) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/note.rb', line 3

def self.go(options)
  app = KRL_COMMON::get_app
  version = options["version"] ? options["version"] : app.version
  note = options["note"]
  app.set_version_note(version, note)
  puts "Done."      
end