Sha256: de43c13a6d107afb857588231f65631ebc487fd4866ba62532f83c7961fe46fd
Contents?: true
Size: 1.17 KB
Versions: 29
Compression:
Stored size: 1.17 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 'dalli' spec.add_runtime_dependency 'gli' spec.add_runtime_dependency 'mime-types' spec.metadata = { 'rubygems_mfa_required' => 'false', } end
Version data entries
29 entries across 29 versions & 1 rubygems