forked from agilastic/agcaldav
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcaldav-icloud.gemspec
38 lines (29 loc) · 1.22 KB
/
caldav-icloud.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
35
36
37
38
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path('../lib/caldav-icloud/version', __FILE__)
Gem::Specification.new do |s|
s.name = "caldav-icloud"
s.version = CalDAViCloud::VERSION
s.summary = "Ruby CalDAV client"
s.description = "yet another great Ruby client for CalDAV calendar and tasks."
s.required_ruby_version = '>= 1.9.2'
s.license = 'MIT'
s.homepage = %q{https://github.com/n8vision/caldav-icloud}
s.authors = [%q{Nick Adams}]
s.email = [%q{[email protected]}]
s.add_runtime_dependency 'icalendar'
s.add_runtime_dependency 'uuid'
s.add_runtime_dependency 'builder'
s.add_runtime_dependency 'net-http-digest_auth'
s.add_development_dependency "rspec"
s.add_development_dependency "fakeweb"
s.description = <<-DESC
caldav-icloud is a Ruby client for CalDAV calendar made to work with Apple's iCloud. It is based on the icalendar gem.
DESC
s.post_install_message = <<-POSTINSTALL
Changelog: https://github.com/n8vision/caldav-icloud/blob/master/CHANGELOG.rdoc
Examples: https://github.com/n8vision/caldav-icloud
POSTINSTALL
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
end