-
Notifications
You must be signed in to change notification settings - Fork 0
/
codebreaker.gemspec
35 lines (30 loc) · 1.59 KB
/
codebreaker.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'codebreaker/version'
Gem::Specification.new do |spec|
spec.name = 'codebreaker'
spec.version = Codebreaker::VERSION
spec.authors = ['Eugene']
spec.email = ['[email protected]']
spec.summary = %q{Codebreaker is a logic game in which a code-breaker tries
to break a secret code created by a code-maker.}
spec.description = %q{Codebreaker is a logic game in which a code-breaker tries
to break a secret code created by a code-maker.
The code-maker, which will be played by the application we’re going to write,
creates a secret code of four numbers between 1 and 6.
The code-breaker then gets some number of chances to break the code.
In each turn, the code-breaker makes a guess of four numbers.
The code-maker then marks the guess with up to four + and - signs.}
spec.homepage = 'https://github.com/GalenkoNeon/CodeBreaker'
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.add_development_dependency 'bundler', '~> 2.4.7'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.12'
end