Sha256: 93cde082e83bf5ebec359e6d66edeccd390b73a2542103df6e88b871e7d90688

Contents?: true

Size: 912 Bytes

Versions: 2

Compression:

Stored size: 912 Bytes

Contents

# frozen_string_literal: true

require_relative "lib/strict_todo/version"

Gem::Specification.new do |spec|
  spec.name          = "strict-todo"
  spec.version       = StrictTodo::VERSION
  spec.authors       = ["tunagohan"]
  spec.email         = ["kazuxtuna@gmail.com"]

  spec.summary       = "Strict to do management."
  spec.description   = "Strict to do management. Have them describe who will do what by when. This is to avoid leaving meaningless to do."
  spec.homepage      = "https://github.com/tunagohan/strict-todo"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
strict-todo-0.0.2 strict-todo.gemspec
strict-todo-0.0.1 strict_todo.gemspec