module SpriteFactory

Constants

DESCRIPTION
LIB
SUMMARY
VERSION

Attributes

cssurl[RW]
glob[RW]
layout[RW]
library[RW]
nocomments[RW]
pngcrush[RW]
report[RW]
sanitizer[RW]
selector[RW]
separator[RW]
style[RW]

Public Class Methods

find_files(*args) click to toggle source
# File lib/sprite_factory.rb, line 81
def self.find_files(*args)
  Dir.glob(args, File::FNM_CASEFOLD).sort # we always do case IN-sensitive file lookups and sort the result
end
run!(input, config = {}, &block) click to toggle source
# File lib/sprite_factory.rb, line 13
def self.run!(input, config = {}, &block)
  Runner.new(input, config).run!(&block)
end