Sha256: c99c32c5e6d53563856a5d75f3bfb5ed7db8c163b3b04247b6adbe66f358c794
Contents?: true
Size: 1.1 KB
Versions: 9
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "board_game_grid/version" Gem::Specification.new do |spec| spec.name = "board_game_grid" spec.version = BoardGameGrid::VERSION spec.authors = ["Mark Humphreys"] spec.email = ["mark@mrlhumphreys.com"] spec.summary = %q{Data structure and logic for a board game grid.} spec.description = %q{Classes that help interpret and operation on the state of a grid of squares with pieces on them.} spec.homepage = "https://github.com/mrlhumphreys/board_game_grid" spec.license = "MIT" 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.required_ruby_version = '>= 2.7.0' spec.add_development_dependency "bundler", "~> 2.1.4" spec.add_development_dependency "rake", "~> 13.0.1" spec.add_development_dependency "minitest", "~> 5.14.0" end
Version data entries
9 entries across 9 versions & 1 rubygems