-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlex-http.gemspec
30 lines (25 loc) · 1.18 KB
/
lex-http.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
require_relative 'lib/legion/extensions/http/version'
Gem::Specification.new do |spec|
spec.name = 'lex-http'
spec.version = Legion::Extensions::Http::VERSION
spec.authors = ['Esity']
spec.email = ['[email protected]']
spec.summary = 'LEX HTTP'
spec.description = 'Connections LegionIO to any HTTP source'
spec.homepage = 'https://github.com/LegionIO/lex-http'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/LegionIO/lex-http'
spec.metadata['documentation_uri'] = 'https://github.com/LegionIO/lex-http'
spec.metadata['changelog_uri'] = 'https://github.com/LegionIO/lex-http'
spec.metadata['bug_tracker_uri'] = 'https://github.com/LegionIO/lex-http/issues'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.require_paths = ['lib']
spec.add_dependency 'faraday'
spec.add_dependency 'faraday_middleware'
spec.add_dependency 'multi_json'
spec.add_dependency 'multi_xml'
end