Sha256: f106f86e0fd18cc88be5867dffcf46848a5ab0c3b4eda97614ca00acf53d7675
Contents?: true
Size: 936 Bytes
Versions: 1
Compression:
Stored size: 936 Bytes
Contents
lib = File.expand_path('lib', __dir__) $:.unshift(lib) unless $:.include?(lib) require 'haveapi/client/version' Gem::Specification.new do |spec| spec.name = 'haveapi-client' spec.version = HaveAPI::Client::VERSION spec.authors = ['Jakub Skokan'] spec.email = ['jakub.skokan@vpsfree.cz'] spec.summary = spec.description = 'Ruby API and CLI for HaveAPI' spec.homepage = '' spec.license = 'MIT' spec.required_ruby_version = '>= 3.0' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'activesupport', '>= 7.0' spec.add_dependency 'highline', '~> 2.1.0' spec.add_dependency 'json' spec.add_dependency 'require_all', '~> 2.0.0' spec.add_dependency 'rest-client', '~> 2.1.0' spec.add_dependency 'ruby-progressbar', '~> 1.13.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
haveapi-client-0.23.6 | haveapi-client.gemspec |