summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/game_of_life.gemspec
blob: 3c7f86bbc807a8649884537eab0e3dd1398a945f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

require_relative "lib/game_of_life/version"

Gem::Specification.new do |spec|
  spec.name          = "terminal_game_of_life"
  spec.version       = GameOfLife::VERSION
  spec.authors       = ["a14m"]
  spec.email         = ["[email protected]"]

  spec.summary       = "Game of Life CLI"
  spec.description   = "Conway's game of life implementation as a CLI ruby gem."
  spec.homepage      = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/ruby/README.md"
  spec.license       = "MIT"
  spec.required_ruby_version = ">= 2.5.0"

  spec.metadata["allowed_push_host"] = "https://rubygems.org"
  spec.metadata["homepage_uri"]      = spec.homepage
  spec.metadata["source_code_uri"]   = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/ruby"
  spec.metadata["documentation_uri"] = "https://rubydoc.info/gems/terminal_game_of_life"
  spec.metadata["changelog_uri"]     = "https://git.sr.ht/~a14m/game-of-life/tree/master/CLI/ruby/CHANGELOG.md"
  spec.metadata["rubygems_mfa_required"] = "true"

  spec.executables   = ["game-of-life"]
  spec.require_paths = ["lib"]
  spec.files         = Dir["README.md", "game_of_life.gemspec", "bin/game-of-life", "lib/**/*.rb", ".yardopts"]

  spec.add_dependency "thor", "~> 1.0"
end