Sha256: 84c79b9e1e6540805befdc9566cf218f126c8871acd68404ede4cec3c9d321d4
Contents?: true
Size: 471 Bytes
Versions: 6
Compression:
Stored size: 471 Bytes
Contents
require 'rrtf' DIR = File.dirname(__FILE__) rtf = RRTF::Document.new rtf.list do |l| l.item do |li| li << "Never venture into an ominous setting." end l.item do |li| li << "Never attempt to disable an unknown entity. " li << "Get away quickly." end l.item do |li| li << "Never stand guard alone. Make certain at least three " li << "other redshirts are present." end end File.open(DIR+'/06.rtf', 'w') { |file| file.write(rtf.to_rtf) }
Version data entries
6 entries across 6 versions & 1 rubygems