preston / asset_tracker
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Tree:
7ffc3ae
Preston Lee (author)
Tue Sep 01 14:13:44 -0700 2009
commit 7ffc3ae6adc95b3ea1a24a08ff02e3f400bcf4ac
tree 1514022ff9c1420b901e911a4241ff72c215e6bd
parent f9f04f178c5380da6133727c4d40372ff4330f8d
tree 1514022ff9c1420b901e911a4241ff72c215e6bd
parent f9f04f178c5380da6133727c4d40372ff4330f8d
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE | ||
| |
NOTICE | ||
| |
README | ||
| |
Rakefile | ||
| |
app/ | ||
| |
config/ | ||
| |
db/ | ||
| |
doc/ | ||
| |
log/ | ||
| |
public/ | ||
| |
script/ | ||
| |
test/ | ||
| |
vendor/ |
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

