public
Description: Helping to solve the shortage of Merb-based blogging sites
Clone URL: git://github.com/mtodd/ramble.git
ramble /
name age message
file .gitignore Mon May 19 00:33:07 -0700 2008 Added comment system dependent on Disqus integr... [mtodd]
file README Mon May 19 12:34:10 -0700 2008 Fixed some documentation. [mtodd]
file Rakefile Thu May 15 23:47:45 -0700 2008 Added initial, empty Merb app. [mtodd]
directory app/ Mon May 26 00:44:10 -0700 2008 Fixed the menu links ordering and grouping. [mtodd]
directory autotest/ Thu May 15 23:47:45 -0700 2008 Added initial, empty Merb app. [mtodd]
directory config/ Fri May 23 16:02:18 -0700 2008 Added shortcut routes and fixed names. [mtodd]
directory public/ Fri May 23 17:09:15 -0700 2008 Added Pages administration and moved most of th... [mtodd]
directory schema/ Thu May 22 22:14:26 -0700 2008 Added some shortcuts, fixed the default routing... [mtodd]
directory spec/ Fri May 23 17:09:15 -0700 2008 Added Pages administration and moved most of th... [mtodd]
README
= Ramble

Solving the shortage of Merb-based blog engines!


== Introduction

This is essentially an experimentation with Merb; this previous statement can be
read (and base the validity of many assumptions) that it will be very simple and
that it will probably suck.


== Installation

This code was based off of Merb 0.9.3, so it may break before version 1.0.

Dependencies:

* Merb (>= 0.9.3)
* Sequel (>= 1.5.1)
* MySQL (or PostgreSQL)

Once these dependencies are satisfied and migrations have been run, you should
be fine to run the server.

To start creating posts, run the following:

$ merb -i
>> u = User.create(:username => 'test', :email => 'test')
>> u.cleartext_password = "password"
>> u.save

This will be your username and password to begin authoring posts as.

To set up comments with Disqus (currently the only way to have comments), edit
the file in config/disqus.yml (copy from config/disqus.yml.sample) and set it to
your custom Disqus website address account.


== License

This software is licensed under the MIT License.

http://www.opensource.org/licenses/mit-license.php


== Copyright

Copyright (C) 2008 Matt Todd <http://purl.org/net/maraby>.