public
Description: A base rails app featuring: RESTful Authentication, Will Paginate, Rspec & Rspec-rails, Exception Notifier, Asset Packager, Cap Recipe (multi-stage). Put together by Fudge to remove the need for boring project setup.
Homepage: http://www.fudgestudios.com
Clone URL: git://github.com/fudgestudios/bort.git
bort /
name age message
file .gitignore Loading commit data...
file Capfile Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
file README.textile Mon Aug 11 08:54:27 -0700 2008 Added chester [Jim Neath]
file Rakefile Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory app/ Wed Aug 13 02:52:17 -0700 2008 Renamed fudge plugin folders and updated views ... [Jim Neath]
directory config/ Wed Aug 13 02:09:44 -0700 2008 Added fudge form and fudge scaffold plugins [Jim Neath]
directory db/
directory doc/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory lib/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory log/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory public/ Wed Aug 13 01:51:41 -0700 2008 Removed application.css and added a simpler app... [Jim Neath]
directory script/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory spec/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory stories/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory test/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory tmp/ Mon Aug 11 03:56:38 -0700 2008 Added current version [Jim Neath]
directory vendor/ Wed Aug 20 06:58:57 -0700 2008 Updated fudge_scaffold [Jim Neath]
README.textile

Bort

Bort is a base Rails 2.1 application that makes creating new projects easier and faster. BO!

Install

  • Download and unzip Bort
  • Edit the database.yml and the settings.yml files
  • Rake db:migrate
  • Have a brew and celebrate

Plugins Installed

Bort comes with a few commonly used plugins installed and already setup.

RESTful Authentication

RESTful Authentication is already setup. The routes are setup, along with the mailers and observers.
Forgotten password comes setup, so you don’t have to mess around setting it up with every project.

The AASM plugin comes pre-installed. RESTful Authentication is also setup to use user activation.

Will Paginate

We use will_paginate in pretty much every project we use, so Bort comes with it pre-installed.

Rspec & Rspec-rails

You should be testing your code, so Bort comes with Rspec and Rspec-rails already installed so you’re
ready to roll.

Exception Notifier

You don’t want your applications to crash and burn so Exception Notifier is already installed to let
you know when everything goes to shit.

Asset Packager

Packages up your css/javascript so you’re not sending 143 files down to the user at the same time. Reduces
load times and saves you bandwidth.

Routes

The routes for RESful Auth and the forgot password stuff are already sorted for you.

Settings YAML

There is a settings.yml file that contains site-wide stuff. The site name, url and admin email are all used
in the RESTful Auth mailers, so you don’t need to worry about editing them.

Database YAML

The database.yml defaults to sqlite3 but also contains the settings for MySQL in comments so you can switch
over easily.

Capistrano Recipe

Bort comes ready to rock capistrano. The recipe that is setup is based on using git and passenger. Edit as
you see fit.

Uses the Database for Sessions

Bort is setup to use the database to store sessions by default.

Misc

  • password and password_confirmation are set up to be filtered
  • there is a default application layout file
  • a page title helper has been added
  • index.html is already deleted
  • rails.png is already deleted
  • a few changes have been made to the default views
  • a basic css file has been added
  • a basic application.js file has been added with a few useful methods