-
Notifications
You must be signed in to change notification settings - Fork 171
/
viewpoint.gemspec
32 lines (26 loc) · 1.12 KB
/
viewpoint.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
# -*- encoding: utf-8 -*-
require 'date'
version = File.read(File.expand_path("../VERSION", __FILE__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'viewpoint'
s.version = version
s.date = Date.today.to_s
s.summary = 'A Ruby client access library for Microsoft Exchange Web Services (EWS)'
s.description = 'A Ruby client access library for Microsoft Exchange Web Services (EWS). Examples can be found here: http://distributed-frostbite.blogspot.com'
s.required_ruby_version = '>= 1.9.1'
s.author = 'Dan Wanek'
s.email = '[email protected]'
s.homepage = 'http://github.com/zenchild/Viewpoint'
s.rubyforge_project = nil
s.files = Dir['Changelog.txt', 'README.md', 'TODO', 'lib/**/*']
s.require_path = 'lib'
s.rdoc_options = %w(-x test/ -x examples/)
s.extra_rdoc_files = %w(README.md)
s.add_runtime_dependency 'nokogiri', '!=1.12.3', '!=1.12.2', '!=1.12.1', '!=1.12.0'
s.add_runtime_dependency 'httpclient'
s.add_runtime_dependency 'rubyntlm'
s.add_runtime_dependency 'logging'
s.add_runtime_dependency 'syslog'
s.add_runtime_dependency 'mutex_m'
end