Sha256: 3d28aae74e20d3a6e9c34f2bde6cd1449805c4c6b99d315cfb07674324c56f40
Contents?: true
Size: 1.59 KB
Versions: 2
Compression:
Stored size: 1.59 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) games = File.expand_path('../lib/games', __FILE__) mastermind = File.expand_path('../lib/games/mastermind', __FILE__) shared = File.expand_path('../lib/games/shared', __FILE__) tictactoe = File.expand_path('../lib/games/tictactoe', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) $LOAD_PATH.unshift(games) unless $LOAD_PATH.include?(games) $LOAD_PATH.unshift(mastermind) unless $LOAD_PATH.include?(mastermind) $LOAD_PATH.unshift(shared) unless $LOAD_PATH.include?(shared) $LOAD_PATH.unshift(tictactoe) unless $LOAD_PATH.include?(tictactoe) require 'games/version' Gem::Specification.new do |spec| spec.name = "games_bfox" spec.version = Games::VERSION spec.authors = ["Brett Fox"] spec.email = ["brettfox11@gmail.com"] spec.summary = %q{Play tic tac toe and mastermind on the command line} spec.description = %q{In order to play, download the gem, and type \"tictactoe\" or \"mastermind\" at your terminal.} spec.homepage = "https://github.com/brett11/games" 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.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.6" spec.add_development_dependency 'pry', '~> 0.10.4' spec.add_development_dependency 'logging', '~> 2.2', '>= 2.2.2' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
games_bfox-0.3.0 | games.gemspec |
games_bfox-0.2.0 | games.gemspec |