1 2module Rex 3 module Ui 4 module Text 5 ### 6 # 7 # Pseudo-shell interface that simply includes the Shell mixin. 8 # 9 ### 10 class PseudoShell 11 include Shell 12 end 13 end 14 end 15end 16 17