-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathluciq-cli.gemspec
More file actions
31 lines (23 loc) · 1.01 KB
/
luciq-cli.gemspec
File metadata and controls
31 lines (23 loc) · 1.01 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
31
# frozen_string_literal: true
require_relative 'lib/luciq/version'
Gem::Specification.new do |spec|
spec.name = 'luciq-cli'
spec.version = Luciq::VERSION
spec.authors = ['Ahmed Hany']
spec.email = ['ahany@luciq.ai']
spec.summary = 'Luciq CLI for developers'
spec.description = 'Interact with Luciq from the command line'
spec.homepage = 'https://github.com/Instabug/luciq-cli'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/Instabug/luciq-cli'
spec.metadata['changelog_uri'] = 'https://github.com/Instabug/luciq-cli/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['lib/**/*', 'bin/*', 'README.md', 'CHANGELOG.md']
spec.bindir = 'bin'
spec.executables = ['luciq']
spec.require_paths = ['lib']
spec.add_dependency 'multipart-post', '~> 2.3'
spec.add_dependency 'thor', '~> 1.3'
end