-
Notifications
You must be signed in to change notification settings - Fork 3
/
baconmail.gemspec
24 lines (19 loc) · 1 KB
/
baconmail.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.unshift File.expand_path("../lib", __FILE__)
require "version"
Gem::Specification.new do |s|
s.name = 'baconmail'
s.version = Baconmail::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["rodrigo franco (caffo)"]
s.email = ['[email protected]']
s.homepage = 'http://github.com/caffo/baconmail'
s.summary = 'gmail based otherinbox defender alternative'
s.description = 'The original Otherinbox Defender is no more. Sadly, the newest version is subpar and do not meet my needs. This project attempts to reproduce the core functionalities of OIB Defender using a GMail account.'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.extra_rdoc_files = %w[ LICENSE.txt README.rdoc ]
s.require_paths = %w[ lib ]
s.add_runtime_dependency 'gmail', ">= 0.4.0"
s.add_runtime_dependency 'aws-s3'
s.add_development_dependency 'rake'
end