README.rdoc in serious-0.2.12 vs README.rdoc in serious-0.3.0
- old
+ new
@@ -58,23 +58,24 @@
- articles
- 2010-02-14-will-you-be-my-valentine.txt
- pages
- about.txt
- config.ru
- - .gems
+ - Gemfile
- Rakefile
The config.ru is pretty straight-forward if you want to stick to the defaults:
require 'serious'
Serious.set :title, "My Sweet Little Blog"
Serious.set :author, "Christoph Olszowka"
Serious.set :url, 'http://mysweetlittleblog.heroku.com'
run Serious
-The .gems file if you want to host on heroku:
+The Gemfile to resolve dependencies (i.e. when hosting on heroku)
- serious
+ source :rubygems
+ gem "serious", ">= 0.3.0"
The Rakefile, which is obviously totally optional but highly recommended looks like this:
require 'serious'
require 'serious/tasks'