# coding: utf-8 # frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'conwaymp/version' Gem::Specification.new do |spec| spec.name = 'conwaymp' spec.version = Conwaymp::VERSION spec.authors = ['Rob McFadzean'] spec.email = ['root@sphericalcube.net'] spec.summary = "Conway's Game of Life Test for MarketPlacer" spec.description = 'My implementation of GoL for the Junior Ruby/Rails position at MarketPlacer' spec.homepage = 'https://github.com/rmcfadzean/conway' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'bin' spec.executables = spec.files.grep(%r{^bin/conway}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'colorize' spec.add_dependency 'slop', '~> 4.0' spec.add_dependency 'hanami-validations' spec.add_development_dependency 'bundler', '~> 1.14' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'guard' spec.add_development_dependency 'guard-rspec' spec.add_development_dependency 'pry', '~> 0.11.0.pre2' spec.add_development_dependency 'awesome_print' spec.add_development_dependency 'simplecov' end