-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathkayako_client.gemspec
More file actions
32 lines (27 loc) · 1.02 KB
/
kayako_client.gemspec
File metadata and controls
32 lines (27 loc) · 1.02 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
#######################################################################
#
# Kayako Ruby REST API library
# _____________________________________________________________________
#
# @author Andriy Lesyuk
#
# @package KayakoClient
# @copyright Copyright (c) 2011-2013, Kayako
# @license FreeBSD
# @link http://forge.kayako.com/projects/kayako-ruby-api-library
#
#######################################################################
require 'rake'
Gem::Specification.new do |s|
s.name = 'KayakoClient'
s.version = '1.1.0'
s.platform = Gem::Platform::RUBY
s.license = 'FreeBSD'
s.author = 'Andriy Lesyuk'
s.email = 'jamie.edwards+rubygems@kayako.com'
s.summary = 'Kayako official Ruby REST API library.'
s.description = 'Kayako\'s official Ruby interface library for the REST API.'
s.homepage = 'http://forge.kayako.com/projects/kayako-ruby-api-library'
s.files = FileList['lib/**/*.rb']
s.test_files = FileList['test/*.rb']
end