forked from agilastic/agcaldav
-
Notifications
You must be signed in to change notification settings - Fork 3
/
agcaldav.gemspec
41 lines (32 loc) · 1.3 KB
/
agcaldav.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
39
40
41
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path('../lib/agcaldav/version', __FILE__)
Gem::Specification.new do |s|
s.name = "agcaldav"
s.version = AgCalDAV::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/jtirila/agcaldav}
s.authors = [%q{Juha-Matti Tirilä}]
s.email = [%q{[email protected]}]
s.add_runtime_dependency 'tzinfo', ["~> 1.2.2"]
s.add_runtime_dependency 'icalendar'
s.add_runtime_dependency 'activesupport'
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 'rake'
s.add_development_dependency "fakeweb"
s.description = <<-DESC
agcaldav is yet another great Ruby client for CalDAV calendar. It is based on the icalendar gem.
DESC
s.post_install_message = <<-POSTINSTALL
Changelog: https://github.com/agilastic/agcaldav/blob/master/CHANGELOG.rdoc
Examples: https://github.com/agilastic/agcaldav
POSTINSTALL
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
end