Sha256: a3efa508339a5560da3b291a8189e67b316873ad5a179ea3708b1684e8dcd557
Contents?: true
Size: 330 Bytes
Versions: 10
Compression:
Stored size: 330 Bytes
Contents
module DNSimple module Commands class TemplateList def execute(args, options = {}) templates = Template.all puts "Found #{templates.length} templates:" templates.each do |template| puts "\t#{template.name} (short_name:#{template.short_name})" end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems