lib/slideshow.rb in slideshow-1.0.3 vs lib/slideshow.rb in slideshow-1.0.4
- old
+ new
@@ -17,11 +17,12 @@
require 'yaml'
require 'cgi'
# required gems
require 'redcloth' # default textile library
-require 'markdown_select' # default markdown library
+require 'markdown' # default markdown library
+require 'fetcher' # fetch docs and blogs via http, https, etc.
# our own code
require 'slideshow/opts'
require 'slideshow/config'
require 'slideshow/gen'
@@ -52,15 +53,16 @@
require 'slideshow/filters/slide_filter'
module Slideshow
- VERSION = '1.0.3'
+ VERSION = '1.0.4'
# 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
+
def Slideshow.main
# allow env variable to set RUBYOPT-style default command line options
# e.g. -o slides -t <your_template_manifest_here>
\ No newline at end of file