forked from nu7hatch/gmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gmail.gemspec
29 lines (26 loc) · 1.14 KB
/
gmail.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
# -*- ruby -*-
$:.unshift(File.expand_path('../lib', __FILE__))
require 'gmail/version'
begin
Gem::Specification.new do |gem|
gem.authors = ["Chris Kowalik"]
gem.email = ["hris@nu7hat.ch"]
gem.description = %q{A Rubyesque interface to Gmail, with all the tools you will need.
Search, read and send multipart emails; archive, mark as read/unread,
delete emails; and manage labels.
}
gem.summary = %q{A Rubyesque interface to Gmail, with all the tools you will need.}
gem.homepage = "http://github.com/nu7hatch/gmail"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "gmail"
gem.require_paths = ["lib"]
gem.version = Gmail::Version::STRING
gem.add_dependency('mime', '>= 0.1')
gem.add_dependency('mail', '>= 2.2.1')
gem.add_dependency('gmail_xoauth', '>= 0.3.0')
gem.add_development_dependency('rspec', '~> 2.0')
gem.add_development_dependency('mocha', '>= 0.9')
end
end