public
Description: A simple web-based asset tracking system for small businesses written in Ruby on Rails (RoR). New equipment is assigned to a specific location and person who is notified of the responsibility. You may optionally add serial numbers and an arbitrary amount of notes to each asset. Configured to run on top of PostgreSQL and sendmail by default, though both are reconfigurable.
Homepage: http://openrain.com
Clone URL: git://github.com/preston/asset_tracker.git
name age message
file .gitignore Tue Sep 01 11:10:46 -0700 2009 Updating gitignore [Marc Chung]
file Capfile Tue Sep 01 11:29:24 -0700 2009 Adding deployment scripts [Marc Chung]
file LICENSE Fri Feb 13 11:13:07 -0800 2009 adding apache licening information [preston]
file NOTICE Fri Feb 13 11:13:40 -0800 2009 adding apache licening information [preston]
file README Tue Sep 01 14:13:44 -0700 2009 Fixing email configuration to use an SMTP serve... [preston]
file Rakefile Mon Jan 12 23:01:44 -0800 2009 initial project files [preston]
directory app/ Tue Sep 01 14:15:40 -0700 2009 Merge branch 'master' of git@github.com:preston... [preston]
directory config/ Tue Sep 01 14:15:40 -0700 2009 Merge branch 'master' of git@github.com:preston... [preston]
directory db/ Tue Sep 01 01:38:32 -0700 2009 Major GUI overhaul. [preston]
directory doc/ Mon Jan 12 23:01:44 -0800 2009 initial project files [preston]
directory log/ Tue Jan 13 00:09:01 -0800 2009 removing logs [preston]
directory public/ Tue Sep 01 01:38:22 -0700 2009 Major GUI overhaul. [preston]
directory script/ Mon Jan 12 23:01:44 -0800 2009 initial project files [preston]
directory test/ Tue Sep 01 01:46:12 -0700 2009 Major GUI overhaul. [preston]
directory vendor/ Tue Sep 01 11:03:53 -0700 2009 Adding or powertools [Marc Chung]
README
== Getting Started

1. Create a config/initializers/email.rb with the following...

ActionMailer::Base.smtp_settings = {
  :address => "smtp.gmail.com",
  :port => 587,
  :authentication => :plain,
  :enable_starttls_auto => true,
  :user_name => "noreply@gmail_or_your_google_domain.com",
  :password => "chucknorris"
}

2. rake db:create
3. rake db:fixtures:load