File: gh.gemspec

package info (click to toggle)
ruby-gh 0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,644 kB
  • sloc: ruby: 1,793; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,101 bytes parent folder | download
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
# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'gh/version'

Gem::Specification.new do |s|
  s.platform              = Gem::Platform::RUBY
  s.name                  = 'gh'
  s.version               = GH::VERSION
  s.summary               = 'layered github client'
  s.description           = 'multi-layer client for the github api v3'

  s.authors               = ['Travis CI']
  s.email                 = 'contact@travis-ci.org'
  s.homepage              = 'https://github.com/travis-ci/gh'

  s.license               = 'MIT'

  s.files                 = Dir['lib/**/*', 'LICENSE']
  s.require_path          = 'lib'

  s.required_ruby_version = '>= 3.2', '< 4'

  s.add_runtime_dependency 'activesupport', '>= 6.1'
  s.add_runtime_dependency 'addressable', '~> 2.8'
  s.add_runtime_dependency 'faraday', '~> 2'
  s.add_runtime_dependency 'faraday-retry'
  s.add_runtime_dependency 'faraday-typhoeus'
  s.add_runtime_dependency 'multi_json', '~> 1'
  s.add_runtime_dependency 'net-http-persistent', '~> 4'
  s.add_runtime_dependency 'net-http-pipeline'
end