Sha256: f280cdc5fb8552496634bea7378d039059220149de79fd5cfba7c65e5b59714c
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'attend/version' Gem::Specification.new do |spec| spec.name = 'attend' spec.version = Attend::VERSION spec.authors = ['Maciej Komorowski'] spec.email = ['mckomo@gmail.com'] spec.license = 'MIT' spec.required_ruby_version = '>= 2.7.2' spec.summary = 'Register Zoho People attendance using CLI' spec.description = 'Attend is CLI tool that will help you register your Zoho People attendance in fast and easy way' spec.homepage = 'https://github.com/mckomo/attend' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'clamp', '~> 1.3' spec.add_dependency 'http', '~> 4.4' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rspec', '~> 3.9' spec.add_development_dependency 'rubocop', '~> 1.11' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
attend-2.0.1 | attend.gemspec |
attend-1.0.0 | attend.gemspec |