Mercurial > hg > soundsoftware-site
view .svn/pristine/8a/8a9427066e2d6e798584d5fb43dde42f7e5a0ae0.svn-base @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
module CodeRay module Encoders # = Null Encoder # # Does nothing and returns an empty string. class Null < Encoder register_for :null def text_token text, kind # do nothing end end end end