-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathviewpoint.gemspec
More file actions
42 lines (35 loc) · 1.63 KB
/
Copy pathviewpoint.gemspec
File metadata and controls
42 lines (35 loc) · 1.63 KB
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
# frozen_string_literal: true
require 'date'
version = File.read(File.expand_path('VERSION', __dir__)).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'
# NOTE: this floor is intentionally conservative — CI starts at Ruby 3.0, but the gem likely
# still works on older Rubies. Don't raise it just to satisfy lint or match CI without evidence of breakage.
s.required_ruby_version = '>= 1.9.1'
s.author = 'Dan Wanek'
s.email = 'dan.wanek@gmail.com'
s.homepage = 'http://github.com/zenchild/Viewpoint'
s.rubyforge_project = nil
s.files = Dir['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 'httpclient'
# logger is no longer a bundled gem on Ruby 4.0
s.add_runtime_dependency 'logger'
s.add_runtime_dependency 'mutex_m'
s.add_runtime_dependency 'nokogiri', '!=1.12.3', '!=1.12.2', '!=1.12.1', '!=1.12.0'
s.add_runtime_dependency 'rubyntlm'
s.add_runtime_dependency 'syslog'
# ostruct and base64 are bundled (not default) gems on modern Rubies;
# declare them so `require` keeps working under `bundle exec`.
s.add_runtime_dependency 'base64'
s.add_runtime_dependency 'ostruct'
s.metadata['rubygems_mfa_required'] = 'true'
end