README.md in rack-blogengine-1.0.8 vs README.md in rack-blogengine-1.0.9

- old
+ new

@@ -1,19 +1,22 @@ # Rack::Blogengine -Rack Middleware to serve a simple blog +Rack Application to serve a simple blog +## NOTE + +This is just a project for learning purpose, but if you want to use it read further. +Code should be considered bad (1st ruby project). +Also its not actively maintained. + ## Build status -[![Build Status](https://travis-ci.org/Benny1992/rack-blogengine.png?branch=master)](https://travis-ci.org/Benny1992/rack-blogengine) [![Coverage Status](https://coveralls.io/repos/Benny1992/rack-blogengine/badge.png?branch=master)](https://coveralls.io/r/Benny1992/rack-blogengine?branch=master) [![Gem Version](https://badge.fury.io/rb/rack-blogengine.png)](http://badge.fury.io/rb/rack-blogengine) [![Dependency Status](https://gemnasium.com/Benny1992/rack-blogengine.png)](https://gemnasium.com/Benny1992/rack-blogengine) +[![Codeship](https://www.codeship.io/projects/9d0a0f70-bc07-0131-eeee-0e1e5f0f6334/status)](https://www.codeship.io/projects/9d0a0f70-bc07-0131-eeee-0e1e5f0f6334/status) - - - ## Supported Ruby Versions & Platforms - rbx 2.2.* - ruby 2.* - ruby 1.9.* @@ -22,23 +25,10 @@ ## Installation $ gem install rack-blogengine -To install the signed gem you have to add my public certificate and install with proper security level: - - $ gem cert –add <(curl -Ls https://raw.github.com/benny1992/rack-blogengine/master/certs/benny1992.pem) - $ gem install rack-blogengine -P MediumSecurity - -### NOTE - -Installing signed Gems is currently not working (rubygem version 2.2.2) - -<a href="https://github.com/rubygems/rubygems/issues/859">Issue</a> will be fixed in version 2.3 - - - ## Usage `rack-blogengine generate <folder>` will create your Folder skeleton ### Structure @@ -117,11 +107,11 @@ ``` Your operators are normal ruby methods defined in this module. Available params are documents & html -Param documents: +Param documents: An Array with document objects. This Document objects has following attributes: path, title, html Param html: The content of the file where the operator was included @@ -136,10 +126,10 @@ ``` In your layout.html then ```html -<div class="nav"> +<div class="nav"> {% show_nav %} </div> ``` ## TODO