-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlhc.gemspec
43 lines (35 loc) · 1.7 KB
/
lhc.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "lhc/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "lhc"
s.version = LHC::VERSION
s.authors = ['https://github.com/local-ch/lhc/contributors']
s.email = ['web@localsearch.ch']
s.homepage = 'https://github.com/local-ch/lhc'
s.summary = 'Advanced HTTP Client for Ruby, fueled with interceptors'
s.description = 'LHC is an extended/advanced HTTP client. Implementing basic http-communication enhancements like interceptors, exception handling, format handling, accessing response data, configuring endpoints and placeholders and fully compatible, RFC-compliant URL-template support.'
s.files = `git ls-files`.split("\n")
s.require_paths = ['lib']
s.requirements << 'Ruby >= 2.0.0'
s.required_ruby_version = '>= 2.7' # Needed for rubocop
s.add_dependency 'activesupport', '>= 5.2'
s.add_dependency 'addressable'
s.add_dependency 'local_uri'
s.add_dependency 'typhoeus', '>= 0.11'
s.add_development_dependency 'geminabox'
s.add_development_dependency 'prometheus-client', '~> 0.7.1'
s.add_development_dependency 'pry'
s.add_development_dependency 'rails', '>= 5.2'
s.add_development_dependency 'redis'
s.add_development_dependency 'rspec-rails', '>= 3.0.0'
s.add_development_dependency 'rubocop', '~> 1.0'
s.add_development_dependency 'rubocop-performance', '~> 1.0'
s.add_development_dependency 'rubocop-rspec', '~> 1.26.0'
s.add_development_dependency 'sprockets-rails'
s.add_development_dependency 'timecop'
s.add_development_dependency 'webmock'
s.license = 'GPL-3.0'
end