ruby-chess 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,68 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-chess
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - jphager2
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem to play chess
14
+ email: jphager2@gmail.com
15
+ executables:
16
+ - ruby-chess.rb
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - bin/ruby-chess.rb
23
+ - lib/bishop.rb
24
+ - lib/board.rb
25
+ - lib/chess.rb
26
+ - lib/game.rb
27
+ - lib/king.rb
28
+ - lib/knight.rb
29
+ - lib/moves.rb
30
+ - lib/pawn.rb
31
+ - lib/piece.rb
32
+ - lib/queen.rb
33
+ - lib/rook.rb
34
+ - lib/space.rb
35
+ - rakefile
36
+ - test/bishop_test.rb
37
+ - test/castle_test.rb
38
+ - test/game_test.rb
39
+ - test/king_test.rb
40
+ - test/knight_test.rb
41
+ - test/pawn_test.rb
42
+ - test/queen_test.rb
43
+ - test/rook_test.rb
44
+ homepage: https://github.com/jphager2/chess
45
+ licenses:
46
+ - MIT
47
+ metadata: {}
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ requirements: []
63
+ rubyforge_project:
64
+ rubygems_version: 2.2.2
65
+ signing_key:
66
+ specification_version: 4
67
+ summary: Chess game logic in Ruby
68
+ test_files: []