-
Notifications
You must be signed in to change notification settings - Fork 0
/
external_services.gemspec
30 lines (23 loc) · 1.19 KB
/
external_services.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
# frozen_string_literal: true
require_relative 'lib/external_services/version'
Gem::Specification.new do |spec|
spec.name = 'external_services'
spec.version = ExternalServices::VERSION
spec.authors = ['Sergey Gnuskov']
spec.email = ['[email protected]']
spec.summary = 'Gem helps syncronizing objects to different external services like Gitlab, Redmine and any other.'
spec.homepage = 'https://github.com/flant/external_services'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.post_install_message = <<-MSG
WARNING: since v0.4 active_job queues are prefixed, so you should check sidekiq config.
And there is a sidekiq queue clean function, you should use it on Sidekiq start instead of cleaning all Redis db.
MSG
spec.required_ruby_version = '>= 2.7'
spec.add_dependency 'faraday', '>= 1.4', '< 2'
spec.add_dependency 'faraday_middleware', '>= 1.0', '< 2'
spec.add_dependency 'rails', '>= 4.2.5', '< 8'
end