-
Notifications
You must be signed in to change notification settings - Fork 8
/
acfs.gemspec
40 lines (32 loc) · 1.32 KB
/
acfs.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'acfs/version'
Gem::Specification.new do |spec|
spec.name = 'acfs'
spec.version = Acfs::VERSION
spec.authors = ['Jan Graichen']
spec.email = %w[jgraichen@altimos.de]
spec.homepage = 'https://github.com/jgraichen/acfs'
spec.license = 'MIT'
spec.description = 'API Client For Services'
spec.summary = <<~SUMMARY.strip
An abstract API base client for service oriented application.
SUMMARY
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['**/*'].grep(%r{
^((bin|lib|test|spec|features)/|
.*\.gemspec|.*LICENSE.*|.*README.*|.*CHANGELOG.*)
}xi)
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 2.7.0'
spec.add_runtime_dependency 'actionpack', '>= 5.2'
spec.add_runtime_dependency 'activemodel', '>= 5.2'
spec.add_runtime_dependency 'activesupport', '>= 5.2'
spec.add_runtime_dependency 'multi_json', '~> 1.0'
spec.add_runtime_dependency 'rack'
spec.add_runtime_dependency 'typhoeus', '~> 1.0'
spec.add_development_dependency 'bundler'
end