mirror of
https://github.com/moparisthebest/mailcatcher
synced 2025-03-11 06:50:12 -04:00
Require i18n because activesupport is retarded.
This commit is contained in:
parent
f88193e946
commit
24e74453c3
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user