Sha256: 999618c3929176b4b90ecb44800a14a0adf2f07cb2623efbe3c27061b80502d5

Contents?: true

Size: 1.12 KB

Versions: 101

Compression:

Stored size: 1.12 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.metadata = {
    'rubygems_mfa_required' => 'true',
  }
end

Version data entries

101 entries across 101 versions & 1 rubygems

Version Path
checkoff-0.139.0 checkoff.gemspec
checkoff-0.138.0 checkoff.gemspec
checkoff-0.137.0 checkoff.gemspec
checkoff-0.136.0 checkoff.gemspec
checkoff-0.135.0 checkoff.gemspec
checkoff-0.134.0 checkoff.gemspec
checkoff-0.133.0 checkoff.gemspec
checkoff-0.132.0 checkoff.gemspec
checkoff-0.131.0 checkoff.gemspec
checkoff-0.130.0 checkoff.gemspec
checkoff-0.129.0 checkoff.gemspec
checkoff-0.128.0 checkoff.gemspec
checkoff-0.127.0 checkoff.gemspec
checkoff-0.126.0 checkoff.gemspec
checkoff-0.125.0 checkoff.gemspec
checkoff-0.124.0 checkoff.gemspec
checkoff-0.123.0 checkoff.gemspec
checkoff-0.122.0 checkoff.gemspec
checkoff-0.121.0 checkoff.gemspec
checkoff-0.120.0 checkoff.gemspec