-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtwisted-caldav.gemspec
34 lines (27 loc) · 1.2 KB
/
twisted-caldav.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
33
34
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require File.expand_path('../lib/twisted-caldav/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'twisted-caldav'
s.version = TwistedCaldav::VERSION
s.summary = 'Ruby calender server client'
s.description = 'Ruby client for searching, creating, editing calendar and tasks. Tested with ubuntu based calendar server installation.'
s.required_ruby_version = ">= 1.9.3"
s.license = "MIT"
s.homepage = %q{https://github.com/siddhartham/twisted-caldav}
s.authors = [%q{Siddhartha Mukherjee}]
s.email = [%q{[email protected]}]
s.add_runtime_dependency 'icalendar', '~> 2.x'
s.add_runtime_dependency 'uuid', '~> 2.x'
s.add_runtime_dependency 'net-http-digest_auth', '~> 1.x'
s.add_runtime_dependency 'builder', '~> 3.x'
s.add_development_dependency 'rspec'
s.add_development_dependency 'webmock'
s.add_dependency 'rake', '~> 13.0'
s.add_development_dependency 'bundler', '~> 2.0'
s.description = <<-DESC
Ruby client for searching, creating, editing calendar and tasks. Tested with ubuntu based calendar server installation.
DESC
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
end