-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlex-github.gemspec
More file actions
30 lines (24 loc) · 1.14 KB
/
lex-github.gemspec
File metadata and controls
30 lines (24 loc) · 1.14 KB
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/legion/extensions/github/version'
Gem::Specification.new do |spec|
spec.name = 'lex-github'
spec.version = Legion::Extensions::Github::VERSION
spec.authors = ['Esity']
spec.email = ['matthewdiverson@gmail.com']
spec.summary = 'LEX Github'
spec.description = 'Connects LegionIO to GitHub'
spec.homepage = 'https://github.com/LegionIO/lex-github'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.4'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/LegionIO/lex-github'
spec.metadata['documentation_uri'] = 'https://github.com/LegionIO/lex-github'
spec.metadata['changelog_uri'] = 'https://github.com/LegionIO/lex-github'
spec.metadata['bug_tracker_uri'] = 'https://github.com/LegionIO/lex-github/issues'
spec.metadata['rubygems_mfa_required'] = 'true'
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', '>= 2.0'
end