-
Notifications
You must be signed in to change notification settings - Fork 1
/
rest-client-wrapper.gemspec
46 lines (41 loc) · 1.77 KB
/
rest-client-wrapper.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
# Copyright (C) 2019 The University of Adelaide
#
# This file is part of Rest-Client-Wrapper.
#
# Rest-Client-Wrapper is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Rest-Client-Wrapper is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Rest-Client-Wrapper. If not, see <http://www.gnu.org/licenses/>.
#
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rest_client_wrapper/version"
Gem::Specification.new do |s|
s.name = "rest-client-wrapper"
s.version = RestClientWrapper::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["University of Adelaide"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/universityofadelaide/rest-client-wrapper"
s.summary = "Rest client wrapper"
s.description = "Generic REST client wrapper"
s.license = "GPL 3.0"
s.required_ruby_version = ">= 3.2.2"
s.add_runtime_dependency "json", "~> 2.6.3"
s.add_runtime_dependency "oauth2", "~> 2.0.9"
s.add_runtime_dependency "rest-client", "~> 2.1.0"
s.add_runtime_dependency "typhoeus", "~> 1.4"
s.metadata["allowed_push_host"] = "https://rubygems.org"
s.files = Dir.glob("lib/**/*.{rake,rb}") + ["#{ s.name }.gemspec", "README.md"]
s.executables = []
s.require_paths = ["lib"]
s.metadata["rubygems_mfa_required"] = "true"
end