class Svgeez::Commands::Build

Public Class Methods

process(options) click to toggle source
# File lib/svgeez/commands/build.rb, line 5
def process(options)
  Svgeez::Builder.new(options).build
end

Private Class Methods

command_action(options) click to toggle source
# File lib/svgeez/commands/build.rb, line 11
def command_action(options)
  Build.process(options)
end
command_description() click to toggle source
# File lib/svgeez/commands/build.rb, line 15
def command_description
  'Builds an SVG sprite from a folder of SVG icons'
end
command_syntax() click to toggle source
# File lib/svgeez/commands/build.rb, line 19
def command_syntax
  'build [options]'
end