module Stylish class Theme::Exporter attr_accessor :options, :source, :destination, :theme def initialize(source, options={}) @source = Pathname(source) @options = options end def run replace_path_placeholders end end end