Rakefile in slideshow-3.1.0 vs Rakefile in slideshow-4.0.0

- old
+ new

@@ -3,61 +3,59 @@ Hoe.spec 'slideshow' do self.version = SlideshowCli::VERSION - self.summary = 'Slide Show (S9) - A Free Web Alternative to PowerPoint and Keynote in Ruby' + self.summary = 'Slide Show (S9) - Write Your Slides in Plain Text w/ Formatting Conventions - A Free Web Alternative to PowerPoint and Keynote' self.description = summary self.urls = ['https://github.com/slideshow-s9/slideshow'] self.author = 'Gerald Bauer' self.email = 'wwwmake@googlegroups.com' self.extra_deps = [ - ['slideshow-models', '>= 3.1.0'], ## Note: pull in all deps via slideshow-models (e.g. props, textutils, etc.) - ['slideshow-templates','>= 3.0.0'], + ['slideshow-models', '>= 4.0.0'], ## Note: pull in all deps via slideshow-models (e.g. props, textutils, etc.) ['gli', '>= 2.13.4'] ] # switch extension to .markdown for gihub formatting # self.readme_file = 'README.md' # self.history_file = 'HISTORY.md' self.licenses = ['Public Domain'] self.spec_extras = { - required_ruby_version: '>= 1.9.2' + required_ruby_version: '>= 2.3' } self.post_install_message =<<EOS ****************************************************************************** Tip: Try some new template packs. Example: $ slideshow install impress.js - + or - + $ slideshow install deck.js - + and use like - + $ slideshow build welcome.text -t impress.js - + or - + $ slideshow build welcome.text -t deck.js - + or add some extra (plugins) helpers (left, right, etc). Example: - + $ slideshow install plugins Questions? Comments? Send them along to the mailing list. https://groups.google.com/group/wwwmake ****************************************************************************** EOS end -