Sha256: e8a1729f61b5e95d8e4db9268b6d3ef75c0cdfb7866b3735a5f7a6f07390caf2
Contents?: true
Size: 475 Bytes
Versions: 1
Compression:
Stored size: 475 Bytes
Contents
module MM module Console module SimpleCommand class Tabs include Base def self.keys ['tabs', 't'] end def self.doc(runtime) "show tabs in your Mingle project" end def execute(runtime) if @tabs = runtime[:api].favorites.select{|f|f.tab_view} runtime[:list] = SelectingList.new(@tabs.collect(&:name), MM::Console::View) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xli-mm-0.0.3 | lib/mm/console/simple_command/tabs.rb |