module PartialCompiler

:nocov:

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/partial_compiler.rb, line 19
def self.config
  @config
end
configure(opts = {}) click to toggle source
# File lib/partial_compiler.rb, line 15
def self.configure(opts = {})
  opts.each {|k,v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym}
end
start() click to toggle source
# File lib/partial_compiler.rb, line 23
def self.start
  Plugin.new
end