class Isomorfeus::Puppetmaster::Select::Option
Public Instance Methods
select()
click to toggle source
# File lib/isomorfeus/puppetmaster/node/select.rb, line 6 def select @driver.select(self) end
selected?()
click to toggle source
# File lib/isomorfeus/puppetmaster/node/select.rb, line 10 def selected? !!self[:selected] end
unselect()
click to toggle source
# File lib/isomorfeus/puppetmaster/node/select.rb, line 14 def unselect @driver.unselect(self) end