Require i18n because activesupport is retarded.

This commit is contained in:
Samuel Cochran 2010-10-25 11:04:17 +08:00
parent f88193e946
commit 24e74453c3
2 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@ MailCatcher runs a super simple SMTP server which catches any message sent to it
## Caveats
* Mail requires activesupport which requires i18n, but it doesn't list it as a dependency. For now I've added i18n as a requirement for MailCatcher.
* For now you need to refresh the page to see new mail. Websockets support is coming soon to show new mail immediately.
* Mail proccessing is fairly basic but easily modified. If something doesn't work for you, fork and fix it or file an issue and let me know. Include the whole message you're having problems with.
* The interface is very basic and has not been tested on many browsers yet.

View File

@ -24,6 +24,9 @@ Gem::Specification.new do |gem|
gem.add_dependency 'sqlite3-ruby'
gem.add_dependency 'sinatra'
gem.add_dependency 'sunshowers'
# Required by activesupport, required by mail, but not listed.
gem.add_dependency 'i18n'
gem.files = %w[
bin/mailcatcher