qi 3.0.2 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 64fe2d481e16251146a9cccd3c13e7a76d693a96
4
- data.tar.gz: 8b3167626ec20d68c1bfcc97bcfe18238370709b
2
+ SHA256:
3
+ metadata.gz: cee3167f3c32021191d7cb31829437f5d33c186314d8ebdeb6ce271ca25f9651
4
+ data.tar.gz: 2802d9e46a694d78d476251e2a194a2de725fc984e5181ff48a9c6cd9512a0e9
5
5
  SHA512:
6
- metadata.gz: 92e457c945435384823cbae7aca0e0432543f5cb73f2033c757985923f4cc019a956e20c91289722a7df43eb90d7b2562d8472785adc9f88b118af8d05e700f5
7
- data.tar.gz: 356e52d4a5fc28987ea4467b472c8d6ba4bbfe46b8159da55333832e8be4e191b81052334ca6eb76bad13d9483e3dfc8caaadfa2804365b025ea3dbeecf9680c
6
+ metadata.gz: 34dd51e3c9179833ccebcbee0a99df78144e4a6867b30f2d9b404b166bc6f5fb039ee922b939056e2f07b80588271e94e627765622cc0e65434c1fefd402a120
7
+ data.tar.gz: bfbe4d8074dcf3c5a196c257f1126e29dcde90bbd0af4221a67a58cd94e93893cccd065ec058c5d3016c2fa5f39946d074f203532e9c13294459195544821b85
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Cyril Wack
3
+ Copyright (c) 2015-2020 Sashite
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,23 +1,19 @@
1
- # Qi
1
+ # <span lang="zh"><ruby>棋<rt>Qi</rt></ruby></span>.rb
2
2
 
3
- [![Build Status](https://travis-ci.org/cyril/qi.svg?branch=master)][travis]
3
+ [![Build Status](https://travis-ci.org/sashite/qi.rb.svg?branch=master)](https://travis-ci.org/sashite/qi.rb)
4
4
  [![Gem Version](https://badge.fury.io/rb/qi.svg)][gem]
5
- [![Inline docs](http://inch-ci.org/github/cyril/qi.svg?branch=master)][inchpages]
6
- [![Documentation](http://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
5
+ [![Inline docs](https://inch-ci.org/github/sashite/qi.rb.svg?branch=master)][inchpages]
6
+ [![Documentation](https://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
7
7
 
8
- > An ordered store of stuff to manage, for Ruby.
9
-
10
- ## Rubies
11
-
12
- * [MRI](https://www.ruby-lang.org/)
13
- * [Rubinius](http://rubini.us/)
14
- * [JRuby](http://jruby.org/)
8
+ > Instantiate [Portable Chess Notation](https://developer.sashite.com/specs/portable-chess-notation)'s positions and apply [Portable Move Notation](https://developer.sashite.com/specs/portable-move-notation)'s moves.
15
9
 
16
10
  ## Installation
17
11
 
18
12
  Add this line to your application's Gemfile:
19
13
 
20
- gem 'qi'
14
+ ```ruby
15
+ gem 'qi'
16
+ ```
21
17
 
22
18
  And then execute:
23
19
 
@@ -27,35 +23,141 @@ Or install it yourself as:
27
23
 
28
24
  $ gem install qi
29
25
 
30
- ## Example
26
+ ## Examples
27
+
28
+ Let's replay [The Shortest Possible Game of Shogi](https://userpages.monmouth.com/~colonel/shortshogi.html):
31
29
 
32
30
  ```ruby
33
31
  require 'qi'
34
32
 
35
- db = Qi::Store.new(8) # => #<Qi::Store:0x007f8c0a82f300 @cells=[nil, nil, nil, nil, nil, nil, nil, nil]>
36
-
37
- result = db.call(2, 3, 'p') # => #<Qi::Result:0x007ff3539d71e8 @store=#<Qi::Store:0x007ff3539d7238 @cells=[nil, nil, nil, "p", nil, nil, nil, nil]>, @deleted_content=nil>
38
- result.store.cells # => [nil, nil, nil, "p", nil, nil, nil, nil]
39
- result.deleted_content # => nil
33
+ starting_position = Qi::Position.new(
34
+ 'l', 'n', 's', 'g', 'k', 'g', 's', 'n', 'l',
35
+ nil, 'r', nil, nil, nil, nil, nil, 'b', nil,
36
+ 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p',
37
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
38
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
39
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
40
+ 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P',
41
+ nil, 'B', nil, nil, nil, nil, nil, 'R', nil,
42
+ 'L', 'N', 'S', 'G', 'K', 'G', 'S', 'N', 'L'
43
+ )
44
+
45
+ starting_position.topside_in_hand_pieces # => []
46
+ starting_position.squares # => ["l", "n", "s", "g", "k", "g", "s", "n", "l",
47
+ # nil, "r", nil, nil, nil, nil, nil, "b", nil,
48
+ # "p", "p", "p", "p", "p", "p", "p", "p", "p",
49
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
50
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
51
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
52
+ # "P", "P", "P", "P", "P", "P", "P", "P", "P",
53
+ # nil, "B", nil, nil, nil, nil, nil, "R", nil,
54
+ # "L", "N", "S", "G", "K", "G", "S", "N", "L"]
55
+ starting_position.bottomside_in_hand_pieces # => []
56
+ starting_position.in_hand_pieces # => []
57
+ starting_position.turn_to_topside? # => false
58
+
59
+ moves = [
60
+ [ 56, 47, 'P' ],
61
+ [ 3, 11, 'g' ],
62
+ [ 64, 24, '+B', 'P' ],
63
+ [ 5, 14, 'g' ],
64
+ [ 24, 14, '+B', 'G' ],
65
+ [ 4, 3, 'k' ],
66
+ [ nil, 13, 'G' ]
67
+ ]
68
+
69
+ last_position = moves.reduce(starting_position) do |position, move|
70
+ position.call(move)
71
+ end
72
+
73
+ last_position.topside_in_hand_pieces # => []
74
+ last_position.squares # => ["l", "n", "s", "k", nil, nil, "s", "n", "l",
75
+ # nil, "r", "g", nil, "G", "+B", nil, "b", nil,
76
+ # "p", "p", "p", "p", "p", "p", nil, "p", "p",
77
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
78
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
79
+ # nil, nil, "P", nil, nil, nil, nil, nil, nil,
80
+ # "P", "P", nil, "P", "P", "P", "P", "P", "P",
81
+ # nil, nil, nil, nil, nil, nil, nil, "R", nil,
82
+ # "L", "N", "S", "G", "K", "G", "S", "N", "L"]
83
+ last_position.bottomside_in_hand_pieces # => ["P"]
84
+ last_position.in_hand_pieces # => []
85
+ last_position.turn_to_topside? # => true
40
86
  ```
41
87
 
42
- ## Versioning
43
-
44
- __Qi__ follows [Semantic Versioning 2.0](http://semver.org/).
88
+ Another example with Xiangqi's Short Double Cannons Checkmate:
45
89
 
46
- ## Contributing
90
+ ```ruby
91
+ require 'qi'
47
92
 
48
- 1. [Fork it](https://github.com/cyril/qi/fork)
49
- 2. Create your feature branch (`git checkout -b my-new-feature`)
50
- 3. Commit your changes (`git commit -am 'Add some feature'`)
51
- 4. Push to the branch (`git push origin my-new-feature`)
52
- 5. Create a new Pull Request
93
+ starting_position = Qi::Position.new(
94
+ '車', '馬', '象', '士', '將', '士', '象', '馬', '車',
95
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
96
+ nil, '砲', nil, nil, nil, nil, nil, '砲', nil,
97
+ '卒', nil, '卒', nil, '卒', nil, '卒', nil, '卒',
98
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
99
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
100
+ '兵', nil, '兵', nil, '兵', nil, '兵', nil, '兵',
101
+ nil, '炮', nil, nil, nil, nil, nil, '炮', nil,
102
+ nil, nil, nil, nil, nil, nil, nil, nil, nil,
103
+ '俥', '傌', '相', '仕', '帥', '仕', '相', '傌', '俥'
104
+ )
105
+
106
+ starting_position.topside_in_hand_pieces # => []
107
+ starting_position.squares # => ["車", "馬", "象", "士", "將", "士", "象", "馬", "車",
108
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
109
+ # nil, "砲", nil, nil, nil, nil, nil, "砲", nil,
110
+ # "卒", nil, "卒", nil, "卒", nil, "卒", nil, "卒",
111
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
112
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
113
+ # "兵", nil, "兵", nil, "兵", nil, "兵", nil, "兵",
114
+ # nil, "炮", nil, nil, nil, nil, nil, "炮", nil,
115
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
116
+ # "俥", "傌", "相", "仕", "帥", "仕", "相", "傌", "俥"]
117
+ starting_position.bottomside_in_hand_pieces # => []
118
+ starting_position.in_hand_pieces # => []
119
+ starting_position.turn_to_topside? # => false
120
+
121
+ moves = [
122
+ [ 64, 67, '炮' ],
123
+ [ 25, 22, '砲' ],
124
+ [ 70, 52, '炮' ],
125
+ [ 19, 55, '砲' ],
126
+ [ 67, 31, '炮' ],
127
+ [ 22, 58, '砲' ],
128
+ [ 52, 49, '炮' ]
129
+ ]
130
+
131
+ last_position = moves.reduce(starting_position) do |position, move|
132
+ position.call(move)
133
+ end
134
+
135
+ last_position.topside_in_hand_pieces # => []
136
+ last_position.squares # => ["車", "馬", "象", "士", "將", "士", "象", "馬", "車",
137
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
138
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
139
+ # "卒", nil, "卒", nil, "炮", nil, "卒", nil, "卒",
140
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
141
+ # nil, nil, nil, nil, "炮", nil, nil, nil, nil,
142
+ # "兵", "砲", "兵", nil, "砲", nil, "兵", nil, "兵",
143
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
144
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
145
+ # "俥", "傌", "相", "仕", "帥", "仕", "相", "傌", "俥"]
146
+ last_position.bottomside_in_hand_pieces # => []
147
+ last_position.in_hand_pieces # => []
148
+ last_position.turn_to_topside? # => true
149
+ ```
53
150
 
54
151
  ## License
55
152
 
56
- See `LICENSE.md` file.
153
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
154
+
155
+ ## About Sashite
156
+
157
+ The `qi` gem is maintained by [Sashite](https://sashite.com/).
158
+
159
+ With some [lines of code](https://github.com/sashite/), let's share the beauty of Chinese, Japanese and Western cultures through the game of chess!
57
160
 
58
161
  [gem]: https://rubygems.org/gems/qi
59
- [travis]: https://travis-ci.org/cyril/qi
60
- [inchpages]: http://inch-ci.org/github/cyril/qi/
61
- [rubydoc]: http://rubydoc.info/gems/qi/frames
162
+ [inchpages]: https://inch-ci.org/github/sashite/qi.rb
163
+ [rubydoc]: https://rubydoc.info/gems/qi/frames
data/lib/qi.rb CHANGED
@@ -1,5 +1,7 @@
1
- # Namespace for the library.
1
+ # frozen_string_literal: true
2
+
3
+ # The Qi module.
2
4
  module Qi
3
5
  end
4
6
 
5
- require_relative File.join 'qi', 'store'
7
+ require_relative 'qi/position'
@@ -0,0 +1,114 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Qi
4
+ # The position class.
5
+ #
6
+ # @see https://developer.sashite.com/specs/portable-chess-notation
7
+ class Position
8
+ # The list of squares of on the board.
9
+ #
10
+ # @!attribute [r] squares
11
+ # @return [Array] The list of squares.
12
+ attr_reader :squares
13
+
14
+ # The list of pieces in hand owned by the bottomside player.
15
+ #
16
+ # @!attribute [r] bottomside_in_hand_pieces
17
+ # @return [Array] The list of bottomside's pieces in hand.
18
+ attr_reader :bottomside_in_hand_pieces
19
+
20
+ # The list of pieces in hand owned by the topside player.
21
+ #
22
+ # @!attribute [r] topside_in_hand_pieces
23
+ # @return [Array] The list of topside's pieces in hand.
24
+ attr_reader :topside_in_hand_pieces
25
+
26
+ # Initialize a position.
27
+ #
28
+ # @param squares [Array] The list of squares of on the board.
29
+ # @param is_turn_to_topside [Boolean] The player who must play.
30
+ # @param bottomside_in_hand_pieces [Array] The list of bottom-side's pieces in hand.
31
+ # @param topside_in_hand_pieces [Array] The list of top-side's pieces in hand.
32
+ #
33
+ # @example The Shogi's starting position
34
+ # Position.new(
35
+ # 'l', 'n', 's', 'g', 'k', 'g', 's', 'n', 'l',
36
+ # nil, 'r', nil, nil, nil, nil, nil, 'b', nil,
37
+ # 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p',
38
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
39
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
40
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
41
+ # 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P',
42
+ # nil, 'B', nil, nil, nil, nil, nil, 'R', nil,
43
+ # 'L', 'N', 'S', 'G', 'K', 'G', 'S', 'N', 'L'
44
+ # )
45
+ def initialize(*squares, is_turn_to_topside: false, bottomside_in_hand_pieces: [], topside_in_hand_pieces: [])
46
+ @squares = squares
47
+ @is_turn_to_topside = is_turn_to_topside
48
+ @bottomside_in_hand_pieces = bottomside_in_hand_pieces
49
+ @topside_in_hand_pieces = topside_in_hand_pieces
50
+
51
+ freeze
52
+ end
53
+
54
+ # Apply a move in PMN (Portable Move Notation) format.
55
+ #
56
+ # @see https://developer.sashite.com/specs/portable-move-notation
57
+ # @return [Position] The new position.
58
+ def call(move)
59
+ updated_squares = squares.dup
60
+ updated_bottomside_in_hand_pieces = bottomside_in_hand_pieces.dup
61
+ updated_topside_in_hand_pieces = topside_in_hand_pieces.dup
62
+
63
+ actions = move.each_slice(4)
64
+
65
+ actions.each do |action|
66
+ src_square_id = action.fetch(0)
67
+ dst_square_id = action.fetch(1)
68
+ moved_piece_name = action.fetch(2)
69
+ captured_piece_name = action.fetch(3, nil)
70
+
71
+ if src_square_id.nil?
72
+ if turn_to_topside?
73
+ piece_in_hand_id = updated_topside_in_hand_pieces.index(moved_piece_name)
74
+ updated_topside_in_hand_pieces.delete_at(piece_in_hand_id)
75
+ else
76
+ piece_in_hand_id = updated_bottomside_in_hand_pieces.index(moved_piece_name)
77
+ updated_bottomside_in_hand_pieces.delete_at(piece_in_hand_id)
78
+ end
79
+ else
80
+ updated_squares[src_square_id] = nil
81
+ end
82
+
83
+ updated_squares[dst_square_id] = moved_piece_name
84
+
85
+ unless captured_piece_name.nil?
86
+ if turn_to_topside?
87
+ updated_topside_in_hand_pieces.push(captured_piece_name)
88
+ else
89
+ updated_bottomside_in_hand_pieces.push(captured_piece_name)
90
+ end
91
+ end
92
+ end
93
+
94
+ self.class.new(*updated_squares, is_turn_to_topside: !turn_to_topside?,
95
+ bottomside_in_hand_pieces: updated_bottomside_in_hand_pieces,
96
+ topside_in_hand_pieces: updated_topside_in_hand_pieces)
97
+ end
98
+
99
+ # The list of pieces in hand owned by the current player.
100
+ #
101
+ # @return [Array] Topside's pieces in hand if turn to topside, bottomside's
102
+ # ones otherwise.
103
+ def in_hand_pieces
104
+ turn_to_topside? ? topside_in_hand_pieces : bottomside_in_hand_pieces
105
+ end
106
+
107
+ # The side who must play.
108
+ #
109
+ # @return [Boolean] True if it is turn to topside, false otherwise.
110
+ def turn_to_topside?
111
+ @is_turn_to_topside
112
+ end
113
+ end
114
+ end
metadata CHANGED
@@ -1,130 +1,130 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - Cyril Wack
7
+ - Cyril Kato
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-07 00:00:00.000000000 Z
11
+ date: 2020-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: brutal
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: bundler
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
- - - "~>"
31
+ - - ">="
18
32
  - !ruby/object:Gem::Version
19
- version: '1.10'
33
+ version: '0'
20
34
  type: :development
21
35
  prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
- - - "~>"
38
+ - - ">="
25
39
  - !ruby/object:Gem::Version
26
- version: '1.10'
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rake
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
- - - "~>"
45
+ - - ">="
32
46
  - !ruby/object:Gem::Version
33
- version: '10.4'
47
+ version: '0'
34
48
  type: :development
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
- - - "~>"
52
+ - - ">="
39
53
  - !ruby/object:Gem::Version
40
- version: '10.4'
54
+ version: '0'
41
55
  - !ruby/object:Gem::Dependency
42
- name: yard
56
+ name: rubocop-performance
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
- - - "~>"
59
+ - - ">="
46
60
  - !ruby/object:Gem::Version
47
- version: '0.8'
61
+ version: '0'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
- - - "~>"
66
+ - - ">="
53
67
  - !ruby/object:Gem::Version
54
- version: '0.8'
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
- name: simplecov
70
+ name: rubocop-thread_safety
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
- - - "~>"
73
+ - - ">="
60
74
  - !ruby/object:Gem::Version
61
- version: '0.10'
75
+ version: '0'
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
- - - "~>"
80
+ - - ">="
67
81
  - !ruby/object:Gem::Version
68
- version: '0.10'
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
- name: rubocop
84
+ name: simplecov
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
- - - "~>"
87
+ - - ">="
74
88
  - !ruby/object:Gem::Version
75
- version: '0.34'
89
+ version: '0'
76
90
  type: :development
77
91
  prerelease: false
78
92
  version_requirements: !ruby/object:Gem::Requirement
79
93
  requirements:
80
- - - "~>"
94
+ - - ">="
81
95
  - !ruby/object:Gem::Version
82
- version: '0.34'
96
+ version: '0'
83
97
  - !ruby/object:Gem::Dependency
84
- name: fix
98
+ name: yard
85
99
  requirement: !ruby/object:Gem::Requirement
86
100
  requirements:
87
- - - "~>"
101
+ - - ">="
88
102
  - !ruby/object:Gem::Version
89
- version: '0.16'
103
+ version: '0'
90
104
  type: :development
91
105
  prerelease: false
92
106
  version_requirements: !ruby/object:Gem::Requirement
93
107
  requirements:
94
- - - "~>"
108
+ - - ">="
95
109
  - !ruby/object:Gem::Version
96
- version: '0.16'
97
- description: An ordered store of stuff to manage, for Ruby.
98
- email:
99
- - contact@cyril.email
110
+ version: '0'
111
+ description: Instantiate PCN's positions and apply PMN's moves.
112
+ email: contact@cyril.email
100
113
  executables: []
101
114
  extensions: []
102
115
  extra_rdoc_files: []
103
116
  files:
104
- - ".gitignore"
105
- - ".travis.yml"
106
- - ".yardopts"
107
- - CODE_OF_CONDUCT.md
108
- - Gemfile
109
117
  - LICENSE.md
110
118
  - README.md
111
- - Rakefile
112
- - VERSION.semver
113
- - bin/console
114
- - bin/setup
115
- - checksum/qi-3.0.0.gem.sha512
116
- - checksum/qi-3.0.1.gem.sha512
117
- - fix/store_fix.rb
118
- - fix/support/coverage.rb
119
119
  - lib/qi.rb
120
- - lib/qi/result.rb
121
- - lib/qi/store.rb
122
- - pkg_checksum
123
- - qi.gemspec
124
- homepage: https://github.com/cyril/qi.rb
120
+ - lib/qi/position.rb
121
+ homepage: https://developer.sashite.com/specs/
125
122
  licenses:
126
123
  - MIT
127
- metadata: {}
124
+ metadata:
125
+ bug_tracker_uri: https://github.com/sashite/qi.rb/issues
126
+ documentation_uri: https://rubydoc.info/gems/qi/index
127
+ source_code_uri: https://github.com/sashite/qi.rb
128
128
  post_install_message:
129
129
  rdoc_options: []
130
130
  require_paths:
@@ -140,10 +140,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
140
  - !ruby/object:Gem::Version
141
141
  version: '0'
142
142
  requirements: []
143
- rubyforge_project:
144
- rubygems_version: 2.4.5.1
143
+ rubygems_version: 3.1.2
145
144
  signing_key:
146
145
  specification_version: 4
147
- summary: Store to manage ordered stuff.
146
+ summary: Represent positions and play moves.
148
147
  test_files: []
149
- has_rdoc:
data/.gitignore DELETED
@@ -1,10 +0,0 @@
1
- /.bundle/
2
- /.ruby-version
3
- /.yardoc
4
- /Gemfile.lock
5
- /_yardoc/
6
- /coverage/
7
- /doc/
8
- /pkg/
9
- /spec/reports/
10
- /tmp/
@@ -1,15 +0,0 @@
1
- language: ruby
2
- sudo: false
3
- cache: bundler
4
- script: 'bundle exec rake test:coverage --trace'
5
- before_install:
6
- - gem install bundler
7
- rvm:
8
- - 1.9.3
9
- - 2.0
10
- - 2.1
11
- - 2.2
12
- - ruby-head
13
- - jruby
14
- - jruby-head
15
- - rbx-2
data/.yardopts DELETED
@@ -1 +0,0 @@
1
- - README.md
@@ -1,13 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
-
5
- We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
-
7
- Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
-
9
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
-
11
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
-
13
- This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile DELETED
@@ -1,3 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
data/Rakefile DELETED
@@ -1,21 +0,0 @@
1
- require 'bundler/gem_tasks'
2
- require 'rake/testtask'
3
- require 'rubocop/rake_task'
4
-
5
- RuboCop::RakeTask.new
6
-
7
- Rake::TestTask.new do |t|
8
- t.verbose = true
9
- t.warning = true
10
- t.pattern = File.join('fix', '**', '*_fix.rb')
11
- end
12
-
13
- namespace :test do
14
- task :coverage do
15
- ENV['COVERAGE'] = 'true'
16
- Rake::Task['test'].invoke
17
- end
18
- end
19
-
20
- task(:doc_stats) { ruby '-S yard stats' }
21
- task default: [:test, :doc_stats, :rubocop]
@@ -1 +0,0 @@
1
- 3.0.2
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'bundler/setup'
4
- require 'qi'
5
-
6
- require 'irb'
7
- IRB.start
data/bin/setup DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
@@ -1 +0,0 @@
1
- 7a4d1c15b8214a9eb475ed919ac4fcaf4b3a9aab5936b1522cbb801b243a649f95d23f42584c0fbad7f4a2ab71efaab9e6b030496a2f7471c74f74986e0e620d
@@ -1 +0,0 @@
1
- 03a1a4eb9f239b817fcab338c15c652a47183c0d58a63c505df1f6a7011ef0d9f2c94bb51f25c5ac455536b5f649dcbaa7087c6033ffe35c4acf5265efa0f853
@@ -1,23 +0,0 @@
1
- require_relative File.join 'support', 'coverage'
2
- require_relative File.join '..', 'lib', 'qi'
3
- require 'fix'
4
-
5
- Fix.describe Qi::Store do
6
- on :new, 8 do
7
- on :cells do
8
- it { MUST eql [nil, nil, nil, nil, nil, nil, nil, nil] }
9
- end
10
-
11
- on :call, 2, 3, 'p' do
12
- on :store do
13
- on :cells do
14
- it { MUST eql [nil, nil, nil, 'p', nil, nil, nil, nil] }
15
- end
16
- end
17
-
18
- on :deleted_content do
19
- it { MUST be_nil }
20
- end
21
- end
22
- end
23
- end
@@ -1,3 +0,0 @@
1
- require 'simplecov'
2
-
3
- SimpleCov.start
@@ -1,21 +0,0 @@
1
- module Qi
2
- # Result class.
3
- class Result
4
- # @param store [Store] Collection of data.
5
- # @param deleted_content [Object, nil] Last deleted content.
6
- def initialize(store, deleted_content)
7
- @store = store
8
- @deleted_content = deleted_content
9
- end
10
-
11
- # @!attribute [r] store
12
- #
13
- # @return [Store] Collection of data.
14
- attr_reader :store
15
-
16
- # @!attribute [r] deleted_content
17
- #
18
- # @return [Symbol, nil] Last deleted content.
19
- attr_reader :deleted_content
20
- end
21
- end
@@ -1,44 +0,0 @@
1
- module Qi
2
- # Main class.
3
- class Store
4
- # @param size [Fixnum] The number of cell.
5
- # @param options [Hash] A content per cell.
6
- def initialize(size, options = {})
7
- @cells = Array.new(size)
8
-
9
- options.each do |cell, piece|
10
- @cells[cell] = piece
11
- end
12
- end
13
-
14
- # @!attribute [r] cells
15
- #
16
- # @return [Array] The cells in the store.
17
- attr_reader :cells
18
-
19
- # @param src_cell [Fixnum] Source cell.
20
- # @param dst_cell [Fixnum] Destination cell.
21
- # @param content [Object] Content.
22
- #
23
- # @return [Store] The new store.
24
- def call(src_cell, dst_cell, content)
25
- h = contents
26
- h.delete(src_cell)
27
- deleted_content = h.delete(dst_cell)
28
- h[dst_cell] = content
29
-
30
- new_store = self.class.new(cells.length, h)
31
-
32
- Result.new(new_store, deleted_content)
33
- end
34
-
35
- private
36
-
37
- # @return [Hash] The contents in the store.
38
- def contents
39
- Hash[[*cells.map.with_index]].invert
40
- end
41
- end
42
- end
43
-
44
- require_relative 'result'
@@ -1,11 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'digest/sha2'
4
-
5
- gemname = :qi
6
- ARGV[0] = File.read('VERSION.semver').chomp if ARGV[0].nil?
7
- built_gem_path = "pkg/#{gemname}-#{ARGV[0]}.gem"
8
- checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
9
- checksum_path = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"
10
-
11
- File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }
data/qi.gemspec DELETED
@@ -1,23 +0,0 @@
1
- Gem::Specification.new do |spec|
2
- spec.name = 'qi'
3
- spec.version = File.read('VERSION.semver').chomp
4
- spec.authors = ['Cyril Wack']
5
- spec.email = ['contact@cyril.email']
6
-
7
- spec.summary = 'Store to manage ordered stuff.'
8
- spec.description = 'An ordered store of stuff to manage, for Ruby.'
9
- spec.homepage = 'https://github.com/cyril/qi.rb'
10
- spec.license = 'MIT'
11
-
12
- spec.files =
13
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
14
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
15
- spec.require_paths = ['lib']
16
-
17
- spec.add_development_dependency 'bundler', '~> 1.10'
18
- spec.add_development_dependency 'rake', '~> 10.4'
19
- spec.add_development_dependency 'yard', '~> 0.8'
20
- spec.add_development_dependency 'simplecov', '~> 0.10'
21
- spec.add_development_dependency 'rubocop', '~> 0.34'
22
- spec.add_development_dependency 'fix', '~> 0.16'
23
- end