forked from gdiphil/ruby-zimbra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zimbra.gemspec
28 lines (22 loc) · 888 Bytes
/
zimbra.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
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "zimbra/version"
Gem::Specification.new do |s|
s.name = "zimbra"
s.version = Zimbra::VERSION
s.authors = ["Derek Kastner","Matt Wilson","Philippe Green","Greenview Data, Inc."]
s.date = '2009-11-18'
s.description = 'Interface to Zimbra management API'
s.summary = %q{SOAP Interface to Zimbra}
s.email = %q{[email protected]}
s.homepage = "https://github.com/gdi/ruby-zimbra"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = '>= 1.9.2'
s.add_development_dependency "rspec"
s.add_runtime_dependency 'curb'
s.add_runtime_dependency 'nokogiri'
s.add_runtime_dependency 'handsoap'
end