Sha256: 53cb3db5e45e12b73da1f5d936352010f7ca39abc421f725658287a2e806205c

Contents?: true

Size: 305 Bytes

Versions: 6

Compression:

Stored size: 305 Bytes

Contents

module Bulldog
  module Processor
    class OneShot < Base
      def initialize(*args)
        super
        @styles = StyleSet.new
      end

      def process(&block)
        @style = nil
        process_style(&block)
      end

      def output_file(style_name)
        nil
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bulldog-0.0.8 lib/bulldog/processor/one_shot.rb
bulldog-0.0.7 lib/bulldog/processor/one_shot.rb
bulldog-0.0.6 lib/bulldog/processor/one_shot.rb
bulldog-0.0.5 lib/bulldog/processor/one_shot.rb
bulldog-0.0.3 lib/bulldog/processor/one_shot.rb
bulldog-0.0.4 lib/bulldog/processor/one_shot.rb