-
Notifications
You must be signed in to change notification settings - Fork 18
/
autodiscover.gemspec
32 lines (27 loc) · 1.22 KB
/
autodiscover.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'autodiscover/version'
Gem::Specification.new do |s|
s.name = 'autodiscover'
s.version = Autodiscover::VERSION
s.license = 'MIT'
s.summary = "Ruby client for Microsoft's Autodiscover Service"
s.description = "The Autodiscover Service provides information about a Microsoft Exchange environment such as service URLs, versions and many other attributes."
s.required_ruby_version = '>= 2.1.0'
s.authors = ["David King", "Dan Wanek"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = 'http://github.com/WinRb/autodiscover'
s.files = `git ls-files -z`.split("\x0")
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_runtime_dependency "nokogiri"
s.add_runtime_dependency "nori"
s.add_runtime_dependency "httpclient"
s.add_runtime_dependency "logging"
s.add_development_dependency "minitest", "~> 5.6.0"
s.add_development_dependency "mocha", "~> 1.1.0"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "pry"
end