-
Notifications
You must be signed in to change notification settings - Fork 30
/
gmail_xoauth.gemspec
30 lines (23 loc) · 1.05 KB
/
gmail_xoauth.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'gmail_xoauth/version'
Gem::Specification.new do |s|
s.name = "gmail_xoauth"
s.version = GmailXoauth::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nicolas Fouché"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/nfo/gmail_xoauth"
s.summary = %Q{Get access to Gmail IMAP and STMP via OAuth, using the standard Ruby Net libraries}
s.description = %Q{Get access to Gmail IMAP and STMP via OAuth, using the standard Ruby Net libraries}
s.required_rubygems_version = ">= 1.3.6"
# s.rubyforge_project = "gmail_xoauth"
s.add_dependency "oauth", ">= 0.3.6"
s.add_development_dependency "shoulda", ">= 0"
s.add_development_dependency "mocha", ">= 0"
s.files = Dir.glob("{bin,lib,test}/**/*") + %w(LICENSE README.markdown)
s.files.reject! { |fn| fn.include? "valid_credentials.yml" }
s.require_path = 'lib'
s.rdoc_options = ["--charset=UTF-8"]
end