Sha256: ffc71026eb5138a9be93562e08c986b236d76b71bcdcef5bfa33417e66d0b2c8
Contents?: true
Size: 464 Bytes
Versions: 5
Compression:
Stored size: 464 Bytes
Contents
module Svgeez module Commands class Build < Command class << self def process(options) Svgeez::Builder.new(options).build end private def command_action(options) Build.process(options) end def command_description 'Builds an SVG sprite from a folder of SVG icons' end def command_syntax 'build [options]' end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems