]> git.cworth.org Git - sup/blob - sup.gemspec
Add store_message to IMAP, mbox and Maildir sources.
[sup] / sup.gemspec
1 $:.push "lib"
2
3 require "sup-files"
4 require "sup-version"
5
6 Gem::Specification.new do |s|
7   s.name = %q{sup}
8   s.version = SUP_VERSION
9   s.date = Time.now.to_s
10   s.authors = ["William Morgan"]
11   s.email = %q{wmorgan-sup@masanjin.net}
12   s.summary = %q{A console-based email client with the best features of GMail, mutt, and emacs. Features full text search, labels, tagged operations, multiple buffers, recent contacts, and more.}
13   s.homepage = %q{http://sup.rubyforge.org/}
14   s.description = %q{Sup is a console-based email client for people with a lot of email. It supports tagging, very fast full-text search, automatic contact-list management, and more. If you're the type of person who treats email as an extension of your long-term memory, Sup is for you.  Sup makes it easy to: - Handle massive amounts of email.  - Mix email from different sources: mbox files (even across different machines), Maildir directories, IMAP folders, POP accounts, and GMail accounts.  - Instantaneously search over your entire email collection. Search over body text, or use a query language to combine search predicates in any way.  - Handle multiple accounts. Replying to email sent to a particular account will use the correct SMTP server, signature, and from address.  - Add custom code to handle certain types of messages or to handle certain types of text within messages.  - Organize email with user-defined labels, automatically track recent contacts, and much more!  The goal of Sup is to become the email client of choice for nerds everywhere.}
15   s.files = SUP_FILES
16   s.executables = SUP_EXECUTABLES
17
18   s.add_dependency "ferret", ">= 0.11.6"
19   s.add_dependency "ncurses", ">= 0.9.1"
20   s.add_dependency "rmail", ">= 0.17"
21   s.add_dependency "highline"
22   s.add_dependency "net-ssh"
23   s.add_dependency "trollop", ">= 1.12"
24   s.add_dependency "lockfile"
25   s.add_dependency "mime-types", "~> 1"
26   s.add_dependency "gettext"
27   s.add_dependency "fastthread"
28
29   puts s.files
30 end