Sha256: 54ab84ab98f52889d63b1f4fb9f5a478d9ca3f564d1170c6744d923e835cc153
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
# coding: ascii # frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'checkoff/version' Gem::Specification.new do |spec| spec.name = 'checkoff' spec.version = Checkoff::VERSION spec.authors = ['Vince Broz'] spec.email = ['vince@broz.cc'] spec.summary = 'Command-line and gem client for Asana (unofficial)' spec.homepage = 'https://github.com/apiology/checkoff' spec.license = 'MIT license' spec.required_ruby_version = '>= 3.0' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'activesupport' spec.add_runtime_dependency 'asana', '>0.10.0' spec.add_runtime_dependency 'cache_method' spec.add_runtime_dependency 'gli' spec.add_runtime_dependency 'mime-types' spec.add_runtime_dependency 'sorbet-runtime' spec.metadata = { 'rubygems_mfa_required' => 'false', } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
checkoff-0.223.0 | checkoff.gemspec |
checkoff-0.222.0 | checkoff.gemspec |
checkoff-0.221.0 | checkoff.gemspec |