forked from necrodome/Viewpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewpoint.gemspec
30 lines (24 loc) · 1.04 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
# -*- 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.6.7.2'
s.add_runtime_dependency 'httpclient', '= 2.8.1'
s.add_runtime_dependency 'rubyntlm', '= 0.3.4'
s.add_runtime_dependency 'logging', '= 2.1.0'
end