-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathyam.gemspec
59 lines (49 loc) · 2.11 KB
/
yam.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- encoding: utf-8 -*-
# Copyright (c) Microsoft Corporation
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY
# IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR
# PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT.
#
# See the Apache Version 2.0 License for specific language governing
# permissions and limitations under the License.
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yammer/version'
require 'date'
Gem::Specification.new do |s|
s.name = 'yam'
s.version = Yammer::Version
s.date = Date.today.to_s
s.summary = "Yammer API Client"
s.description = "A Ruby wrapper for accessing Yammer's REST API"
s.authors = ["Kevin Mutyaba"]
s.email = %q{kmutyaba@yammer-inc.com}
s.homepage = 'http://yammer.github.io/yam'
s.rubygems_version = Yammer::Version
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.licenses = ['MIT']
s.test_files = Dir.glob("spec/**/*")
s.cert_chain = ['certs/public.pem']
s.signing_key = File.expand_path("~/.gem/certs/private_key.pem") if $0 =~ /gem\z/
s.add_dependency 'oj', '~> 2.14'
s.add_dependency 'multi_json', '~> 1.8'
s.add_dependency 'rest-client', '~> 1.8'
s.add_dependency 'addressable', '~> 2.4'
s.add_dependency 'oauth2-client', '~> 2.0'
s.add_development_dependency 'rake', '~> 0'
s.add_development_dependency 'rspec', '~> 0'
s.add_development_dependency 'simplecov', '~> 0.11.1'
s.add_development_dependency 'webmock', '~> 1.17', '>= 1.17.0'
s.add_development_dependency 'yard', '~> 0.8', '>= 0.8.7'
s.post_install_message = %q{ Thanks for installing! For API help go to http://developer.yammer.com }
end