exception notification

This commit is contained in:
joshua stein 2012-06-30 16:42:07 -05:00
parent cb4f0f9b4e
commit 7fa3f44b27
4 changed files with 15 additions and 14 deletions

19
Gemfile
View file

@ -14,14 +14,7 @@ gem "bcrypt-ruby", "3.0.0"
gem "dynamic_form"
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
end
# To use Jbuilder templates for JSON
# gem "jbuilder"
gem "exception_notification"
# Use unicorn as the app server
gem "unicorn"
@ -29,8 +22,8 @@ gem "unicorn"
# for asset compilation
gem "uglifier"
# Deploy with Capistrano
# gem "capistrano"
# To use debugger
# gem "ruby-debug19", :require => "ruby-debug"
group :test, :development do
gem "rspec-rails", "~> 2.6"
gem "machinist"
gem "sqlite3"
end

View file

@ -34,6 +34,8 @@ GEM
diff-lcs (1.1.3)
dynamic_form (1.1.4)
erubis (2.7.0)
exception_notification (2.6.1)
actionmailer (>= 3.0.4)
execjs (1.3.2)
multi_json (~> 1.0)
hike (1.2.1)
@ -117,6 +119,7 @@ PLATFORMS
DEPENDENCIES
bcrypt-ruby (= 3.0.0)
dynamic_form
exception_notification
jquery-rails
machinist
mysql2

View file

@ -15,7 +15,7 @@ Lobsters::Application.configure do
config.assets.compress = true
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = false
config.assets.compile = true
# Generate digests for assets URLs
config.assets.digest = true

View file

@ -0,0 +1,5 @@
ActionMailer::Base.smtp_settings = {
:address => "127.0.0.1",
:port => 25,
:domain => "lobste.rs",
}