instiki/vendor/plugins/maruku/spec/spec_helper.rb
Jacques Distler 13a522525c REXML is dead. Long live Nokogiri.
Modify Maruku to use Nokogiri instead of REXML.
Produces a 3-fold speedup in the #to_html method.
2011-08-11 20:36:44 -05:00

8 lines
197 B
Ruby

require 'rubygems'
require 'rspec'
lib_dir = File.dirname(__FILE__) + "/../lib"
$:.unshift lib_dir unless $:.include?(lib_dir)
$: << File.dirname(__FILE__) + "/../../syntax/lib/"
require 'maruku'