public
Description: Very simple blog (posts, comments, rss, anti spam)
Homepage: http://vicentgozalbes.com
Clone URL: git://github.com/vigosan/vlog.git
vigosan (author)
Sat Jun 27 08:20:54 -0700 2009
commit  da99241b999e3083b4924dfd069e6f99391bdc21
tree    de77967e2c65c0e14ea8b100d7e2e52db9333a92
parent  5e9bae915cc713cb5cc228954f562fc24ca5e8b7
vlog /
README
vlog (very simple blog)
http://vicentgozalbes.com
 
== Installation

  1: cp config/database.yml.example config/database.yml
  2: cp config/config.yml.example config/config.yml
  3: rake gems:install
  4: rake db:migrate
  5: rake vlog:config
  6: ruby script/server

== Login 

  http://localhost:3000/login
  
== Textile support

  Visit http://textism.com/tools/textile/

== Insert code in a post

  @@@ ruby
  def index
    @posts = Post.all

    respond_to do |format|
      format.html # index.html.erb
    end
  end
  @@@
  
== MIT LICENSE

  Copyright (c) 2008 Trevor Turk

  Permission is hereby granted, free of charge, to any person
  obtaining a copy of this software and associated documentation
  files (the "Software"), to deal in the Software without
  restriction, including without limitation the rights to use,
  copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the
  Software is furnished to do so, subject to the following
  conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  OTHER DEALINGS IN THE SOFTWARE