-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitlab-faraday.gemspec
More file actions
26 lines (20 loc) · 896 Bytes
/
gitlab-faraday.gemspec
File metadata and controls
26 lines (20 loc) · 896 Bytes
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
# frozen_string_literal: true
require_relative 'lib/gitlab/version'
Gem::Specification.new do |spec|
spec.name = 'gitlab-faraday'
spec.version = Gitlab::VERSION
spec.authors = ['Nihad Abbasov', 'Sean Edge']
spec.email = ['mail@narkoz.me', 'asedge@gmail.com']
spec.summary = 'Ruby wrapper and target for the GitLab API'
spec.description = 'Ruby wrapper and target for the GitLab REST API'
spec.homepage = 'https://github.com/NARKOZ/gitlab'
spec.license = 'BSD-2-Clause'
spec.required_ruby_version = '>= 3.2.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/NARKOZ/gitlab'
spec.metadata['changelog_uri'] = 'https://github.com/NARKOZ/gitlab/blob/master/CHANGELOG.md'
spec.files = Dir['lib/**/*']
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '>= 1.0', '< 3.0'
spec.add_dependency 'base64'
end