Sha256: 3cb75b9b5ac18b2567be67b311fccb8ff5af8eff6a13f68167c00ef30cccba34
Contents?: true
Size: 299 Bytes
Versions: 9
Compression:
Stored size: 299 Bytes
Contents
meta :ansi do |actor| actor.tell "Ansi is #{ansi ? 'ON' : 'OFF'}." end meta :ansi, Query::Text.new('on') do |actor, string| actor.ansi = true actor.tell "Ansi is ON." end meta :ansi, Query::Text.new('off') do |actor, string| actor.ansi = false actor.tell "Ansi is OFF." end
Version data entries
9 entries across 9 versions & 1 rubygems