Sha256: 0bfb17271ff6a93ba7942320bb2cba214e8327edc404e13122f940a897e8377b
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
# 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
conwaymp-0.2.0 | conwaymp.gemspec |