Sha256: eb991288a4942405edb08a40319168a6fb26f4d7773365c24f9db4b702affffd
Contents?: true
Size: 1.08 KB
Versions: 6
Compression:
Stored size: 1.08 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'just_backgammon/version' Gem::Specification.new do |spec| spec.name = "just_backgammon" spec.version = JustBackgammon::VERSION spec.authors = ["Mark Humphreys"] spec.email = ["mark@mrlhumphreys.com"] spec.summary = %q{A backgammon engine written in ruby} spec.description = %q{Provides a representation of a backgammon game complete with rules enforcement and serialisation.} spec.homepage = "https://github.com/mrlhumphreys/just_backgammon" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.1' spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" end
Version data entries
6 entries across 6 versions & 1 rubygems