forked from jhk753/gmail-ruby-api
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgmail.gemspec
45 lines (37 loc) · 1.73 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'gmail/version'
Gem::Specification.new do |s|
s.name = "gmail-api-ruby"
s.summary = "A Ruby interface to Gmail API (NO IMAP, NO SMTP), with all the tools you will need."
s.description = "A Ruby interface to Gmail API (NO IMAP, NO SMTP).
Search, read and send multipart emails; archive, mark as read/unread,
delete emails; and manage labels. Everything is done through the Gmail API without going through IMAP or SMTP Protocol
This is pretty much in alpha right now, though it's vaguely functional. All help gratefully received."
s.version = Gmail::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Keiran Betteley", "Julien Hobeika"]
s.homepage = "http://github.com/carpela/gmail-api-ruby"
s.licenses = ['MIT']
#gmail-ruby-api Dependencies
# runtime dependencies
s.required_ruby_version = '>= 1.9.3'
s.add_dependency "mime", ">= 0.1"
s.add_dependency "mail", ">= 2.2.1"
s.add_dependency "activesupport", "~> 4"
s.add_dependency('google-api-client', ['>= 0.13.0', '<= 0.38'])
s.add_dependency('googleauth', ['>= 0.5.0', '< 1.0.0'])
s.add_dependency "hooks", ">=0.4.0"
s.add_dependency "hashie", ">=3.3.2"
s.add_dependency 'stringex', '~> 1.0'
# development dependencies
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.add_development_dependency('mocha', '~> 1.0.0')
s.add_development_dependency('shoulda', '~> 3.5.0')
s.add_development_dependency "gem-release"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end