Sha256: 3de9f584ca20a9286d9691faa4e405edda488f52bf57d6473a866f0ec483daf0
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'time_block/version' Gem::Specification.new do |spec| spec.name = 'time_block' spec.version = TimeBlock::VERSION spec.authors = ['Faizal Zakaria'] spec.email = ['phaibusiness@gmail.com'] spec.summary = 'Time block' spec.description = 'Notifier to notify you when your time block is ended' spec.homepage = '' spec.license = 'MIT' spec.executables = 'timeblock' spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake' spec.add_runtime_dependency 'terminal-notifier' spec.add_development_dependency 'rubocop', '~> 0.49' spec.add_dependency 'dante' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
time_block-0.2.0 | time_block.gemspec |
time_block-0.1.0 | time_block.gemspec |