-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
imap-backup.gemspec
35 lines (30 loc) · 1.24 KB
/
imap-backup.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require_relative "lib/imap/backup/version"
Gem::Specification.new do |gem|
gem.name = "imap-backup"
gem.description = "Backup GMail, or any other IMAP email service, to disk."
gem.summary = "Backup GMail (or other IMAP) accounts to disk"
gem.authors = ["Joe Yates"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/joeyates/imap-backup"
gem.licenses = ["MIT"]
gem.version = Imap::Backup::VERSION
gem.files = %w[bin/imap-backup]
gem.files += Dir.glob("docs/*.md")
gem.files += Dir.glob("lib/**/*.rb")
gem.files += %w[imap-backup.gemspec]
gem.files += %w[LICENSE README.md]
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 3.0"
gem.add_runtime_dependency "highline"
gem.add_runtime_dependency "mail", "2.7.1"
gem.add_runtime_dependency "net-imap", ">= 0.3.2"
gem.add_runtime_dependency "net-smtp"
gem.add_runtime_dependency "os"
gem.add_runtime_dependency "rake"
gem.add_runtime_dependency "thor", "~> 1.1"
gem.add_runtime_dependency "thunderbird", "0.3.0"
gem.metadata = {
"rubygems_mfa_required" => "true"
}
end