summaryrefslogtreecommitdiffstats
path: root/CLI/ruby/game_of_life.gemspec
diff options
context:
space:
mode:
authora14m <[email protected]>2020-12-12 21:04:23 +0000
committera14m <[email protected]>2020-12-12 21:04:23 +0000
commit784e4d51ddce7de440e124c0d0df63758532f980 (patch)
treea58a0d7545103a12d0b2d676cbf40d31dd4f9c01 /CLI/ruby/game_of_life.gemspec
parent6efdc07ea344e38b45b77c65a26a45453cc69860 (diff)
parentca060b58fc9d2b237cdd3002a936b6da03195dde (diff)
Merge branch 'feature/multiple-ruby-version-tests' into 'master'
Feature/multiple ruby version tests See merge request a14m/game-of-life!7
Diffstat (limited to 'CLI/ruby/game_of_life.gemspec')
-rw-r--r--CLI/ruby/game_of_life.gemspec6
1 files changed, 4 insertions, 2 deletions
diff --git a/CLI/ruby/game_of_life.gemspec b/CLI/ruby/game_of_life.gemspec
index 73ea1c8..9f88e68 100644
--- a/CLI/ruby/game_of_life.gemspec
+++ b/CLI/ruby/game_of_life.gemspec
@@ -12,15 +12,17 @@ Gem::Specification.new do |spec|
spec.description = "Conway's game of life implementation as a CLI ruby gem."
spec.homepage = "https://gitlab.com/a14m/game-of-life"
spec.license = "MIT"
- spec.required_ruby_version = ">= 2.4.0"
+ 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://gitlab.com/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://gitlab.com/a14m/game-of-life/-/blob/master/CLI/ruby/CHANGELOG.md"
spec.executables = ["game-of-life"]
spec.require_paths = ["lib"]
- spec.files = Dir["README.md", "game_of_life.gemspec", "bin/game-of-life", "lib/**/*.rb"]
+ spec.files = Dir["README.md", "game_of_life.gemspec", "bin/game-of-life", "lib/**/*.rb", ".yardopts"]
spec.add_dependency "thor", "~> 1.0"