lib/slideshow.rb in slideshow-0.9.6 vs lib/slideshow.rb in slideshow-0.9.7

- old
+ new

@@ -23,14 +23,17 @@ # our own code require 'slideshow/opts' require 'slideshow/config' require 'slideshow/gen' +require 'slideshow/manifest' +require 'slideshow/fetch' require 'slideshow/slide' -require 'slideshow/textile' -require 'slideshow/markdown' +require 'slideshow/markup/textile' +require 'slideshow/markup/markdown' + # load built-in (required) helpers/plugins require 'slideshow/helpers/text_helper' require 'slideshow/helpers/capture_helper' require 'slideshow/helpers/analytics_helper' require 'slideshow/helpers/table_helper' @@ -49,11 +52,11 @@ require 'slideshow/filters/slide_filter' module Slideshow - VERSION = '0.9.6' + VERSION = '0.9.7' # version string for generator meta tag (includes ruby version) def Slideshow.generator "Slide Show (S9) #{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]" end @@ -71,17 +74,18 @@ Gen.new.run(args) end end # module Slideshow -# load built-in (optional) helpers/plugins +# load built-in (optional) helpers/plugins/engines # If a helper fails to load, simply ingnore it # If you want to use it install missing required gems e.g.: # gem install coderay # gem install ultraviolet etc. BUILTIN_OPT_HELPERS = [ 'slideshow/helpers/syntax/uv_helper.rb', 'slideshow/helpers/syntax/coderay_helper.rb', + 'slideshow/markup/rest.rb', ] BUILTIN_OPT_HELPERS.each do |helper| begin require(helper) \ No newline at end of file