qi 3.0.1 → 6.0.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: d45d9b62661cb1ef32df8d589e657fa99a93f575
4
- data.tar.gz: afb52aa36cf472f594b808066fa951e9afc4fbf4
2
+ SHA256:
3
+ metadata.gz: ea547ce94942f087213cf6a85465a231347e2cbd1805b5be7ebbe108d5cdd304
4
+ data.tar.gz: '00529deb18f2658355d4bf8dd6955e3bf4469047164b872dea91ff3ea61f1841'
5
5
  SHA512:
6
- metadata.gz: a850e0f0217665d7cee56544747e0e87b5fc13b2032d85ebef82bb944501223e7dde41ca99c89115186c0a3a4daca689d5446b5321556044fe2ffeb0b63d348a
7
- data.tar.gz: de6cf14c265a9194b893f8c3d37806ddbc8289bf7bddec2768de7085a4358ef9539dd83f9f3798967c6c3966aea2bb88e030d66ba27ec735b344360d137158b6
6
+ metadata.gz: d46dd80b15e18ba16a3c4ea6c9d8a479e9f2f044e5b776c34c5152e80903c9e4aa806ee603c448334fdc10fcea995a710b33b30488ebf199a1c56e559065e95b
7
+ data.tar.gz: f905c0750db19eda558dae0e8bcab054f180f4f21997f6896426330d64f10404c8cc63b08557a4e9c0d5fd264861fe3e933a6b23be3d418851f31abe1787481d
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 Cyril Kato
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
1
  # Qi
2
2
 
3
- [![Build Status](https://travis-ci.org/sashite/qi.svg?branch=master)][travis]
3
+ [![Build Status](https://api.travis-ci.org/sashite/qi.rb.svg?branch=master)][travis]
4
4
  [![Gem Version](https://badge.fury.io/rb/qi.svg)][gem]
5
- [![Inline docs](http://inch-ci.org/github/sashite/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 to collect symbols 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
 
@@ -29,33 +25,64 @@ Or install it yourself as:
29
25
 
30
26
  ## Example
31
27
 
28
+ Let's replay [The Shortest Possible Game of Shogi](https://userpages.monmouth.com/~colonel/shortshogi.html):
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, ''.to_sym) # => #<Qi::Result:0x007ff3539d71e8 @store=#<Qi::Store:0x007ff3539d7238 @cells=[nil, nil, nil, :♙, nil, nil, nil, nil]>, @deleted_content=nil>
38
- result.store.cells # => [nil, nil, nil, :♙, nil, nil, nil, nil]
39
- result.deleted_content # => nil
33
+ shogi_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
+ moves = [
46
+ [ 56, 47, 'P' ],
47
+ [ 3, 11, 'g' ],
48
+ [ 64, 24, '+B', 'P' ],
49
+ [ 5, 14, 'g' ],
50
+ [ 24, 14, '+B', 'G' ],
51
+ [ 4, 3, 'k' ],
52
+ [ nil, 13, 'G' ]
53
+ ]
54
+
55
+ last_position = moves.reduce(shogi_starting_position) do |position, move|
56
+ position.call(move)
57
+ end
58
+
59
+ last_position.topside_in_hand_pieces # => []
60
+
61
+ last_position.squares # => ["l", "n", "s", "k", nil, nil, "s", "n", "l",
62
+ # nil, "r", "g", nil, "G", "+B", nil, "b", nil,
63
+ # "p", "p", "p", "p", "p", "p", nil, "p", "p",
64
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
65
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
66
+ # nil, nil, "P", nil, nil, nil, nil, nil, nil,
67
+ # "P", "P", nil, "P", "P", "P", "P", "P", "P",
68
+ # nil, nil, nil, nil, nil, nil, nil, "R", nil,
69
+ # "L", "N", "S", "G", "K", "G", "S", "N", "L"]
70
+
71
+ last_position.bottomside_in_hand_pieces # => ["P"]
72
+ last_position.turn_to_topside? # => true
40
73
  ```
41
74
 
42
- ## Versioning
43
-
44
- __Qi__ follows [Semantic Versioning 2.0](http://semver.org/).
75
+ ## License
45
76
 
46
- ## Contributing
77
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
78
 
48
- 1. [Fork it](https://github.com/sashite/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
79
+ ## About Sashite
53
80
 
54
- ## License
81
+ The `qi` gem is maintained by [Sashite](https://sashite.com/).
55
82
 
56
- See `LICENSE.md` file.
83
+ 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
84
 
58
85
  [gem]: https://rubygems.org/gems/qi
59
- [travis]: https://travis-ci.org/sashite/qi
60
- [inchpages]: http://inch-ci.org/github/sashite/qi/
61
- [rubydoc]: http://rubydoc.info/gems/qi/frames
86
+ [travis]: https://travis-ci.org/sashite/qi.rb
87
+ [inchpages]: https://inch-ci.org/github/sashite/qi.rb
88
+ [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,89 @@
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
+ attr_reader :squares, :bottomside_in_hand_pieces, :topside_in_hand_pieces
9
+
10
+ # Initialize a position.
11
+ #
12
+ # @param is_turn_to_topside [Boolean] The player who must play.
13
+ # @param bottomside_in_hand_pieces [Array] The list of bottom-side's pieces in hand.
14
+ # @param topside_in_hand_pieces [Array] The list of top-side's pieces in hand.
15
+ #
16
+ # @example The Shogi's starting position
17
+ # Position.new(
18
+ # 'l', 'n', 's', 'g', 'k', 'g', 's', 'n', 'l',
19
+ # nil, 'r', nil, nil, nil, nil, nil, 'b', nil,
20
+ # 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p',
21
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
22
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
23
+ # nil, nil, nil, nil, nil, nil, nil, nil, nil,
24
+ # 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P', 'P',
25
+ # nil, 'B', nil, nil, nil, nil, nil, 'R', nil,
26
+ # 'L', 'N', 'S', 'G', 'K', 'G', 'S', 'N', 'L'
27
+ # )
28
+ def initialize(*squares, is_turn_to_topside: false, bottomside_in_hand_pieces: [], topside_in_hand_pieces: [])
29
+ @squares = squares
30
+ @is_turn_to_topside = is_turn_to_topside
31
+ @bottomside_in_hand_pieces = bottomside_in_hand_pieces
32
+ @topside_in_hand_pieces = topside_in_hand_pieces
33
+
34
+ freeze
35
+ end
36
+
37
+ # Apply a move in PMN (Portable Move Notation) format.
38
+ #
39
+ # @see https://developer.sashite.com/specs/portable-move-notation
40
+ # @return [Position] The new position.
41
+ def call(move)
42
+ updated_squares = squares.dup
43
+ updated_bottomside_in_hand_pieces = bottomside_in_hand_pieces.dup
44
+ updated_topside_in_hand_pieces = topside_in_hand_pieces.dup
45
+
46
+ actions = move.each_slice(4)
47
+
48
+ actions.each do |action|
49
+ src_square_id = action.fetch(0)
50
+ dst_square_id = action.fetch(1)
51
+ moved_piece_name = action.fetch(2)
52
+ captured_piece_name = action.fetch(3, nil)
53
+
54
+ if src_square_id.nil?
55
+ if turn_to_topside?
56
+ piece_in_hand_id = updated_topside_in_hand_pieces.index(moved_piece_name)
57
+ updated_topside_in_hand_pieces.delete_at(piece_in_hand_id)
58
+ else
59
+ piece_in_hand_id = updated_bottomside_in_hand_pieces.index(moved_piece_name)
60
+ updated_bottomside_in_hand_pieces.delete_at(piece_in_hand_id)
61
+ end
62
+ else
63
+ updated_squares[src_square_id] = nil
64
+ end
65
+
66
+ updated_squares[dst_square_id] = moved_piece_name
67
+
68
+ unless captured_piece_name.nil?
69
+ if turn_to_topside?
70
+ updated_topside_in_hand_pieces.push(captured_piece_name)
71
+ else
72
+ updated_bottomside_in_hand_pieces.push(captured_piece_name)
73
+ end
74
+ end
75
+ end
76
+
77
+ self.class.new(*updated_squares, is_turn_to_topside: !turn_to_topside?,
78
+ bottomside_in_hand_pieces: updated_bottomside_in_hand_pieces,
79
+ topside_in_hand_pieces: updated_topside_in_hand_pieces)
80
+ end
81
+
82
+ # The player who must play.
83
+ #
84
+ # @return [Boolean] True if it is turn to topside, false otherwise.
85
+ def turn_to_topside?
86
+ @is_turn_to_topside
87
+ end
88
+ end
89
+ end
metadata CHANGED
@@ -1,129 +1,144 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qi
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 6.0.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-09 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
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.86.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.86.0
55
69
  - !ruby/object:Gem::Dependency
56
- name: simplecov
70
+ name: rubocop-performance
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: rubocop-thread_safety
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov
71
99
  requirement: !ruby/object:Gem::Requirement
72
100
  requirements:
73
- - - "~>"
101
+ - - ">="
74
102
  - !ruby/object:Gem::Version
75
- version: '0.34'
103
+ version: '0'
76
104
  type: :development
77
105
  prerelease: false
78
106
  version_requirements: !ruby/object:Gem::Requirement
79
107
  requirements:
80
- - - "~>"
108
+ - - ">="
81
109
  - !ruby/object:Gem::Version
82
- version: '0.34'
110
+ version: '0'
83
111
  - !ruby/object:Gem::Dependency
84
- name: fix
112
+ name: yard
85
113
  requirement: !ruby/object:Gem::Requirement
86
114
  requirements:
87
- - - "~>"
115
+ - - ">="
88
116
  - !ruby/object:Gem::Version
89
- version: '0.16'
117
+ version: '0'
90
118
  type: :development
91
119
  prerelease: false
92
120
  version_requirements: !ruby/object:Gem::Requirement
93
121
  requirements:
94
- - - "~>"
122
+ - - ">="
95
123
  - !ruby/object:Gem::Version
96
- version: '0.16'
97
- description: An ordered store to collect symbols for Ruby.
98
- email:
99
- - contact@cyril.email
124
+ version: '0'
125
+ description: Instantiate PCN's positions and apply PMN's moves.
126
+ email: contact@cyril.email
100
127
  executables: []
101
128
  extensions: []
102
129
  extra_rdoc_files: []
103
130
  files:
104
- - ".gitignore"
105
- - ".travis.yml"
106
- - ".yardopts"
107
- - CODE_OF_CONDUCT.md
108
- - Gemfile
109
131
  - LICENSE.md
110
132
  - README.md
111
- - Rakefile
112
- - VERSION.semver
113
- - bin/console
114
- - bin/setup
115
- - checksum/qi-3.0.0.gem.sha512
116
- - fix/store_fix.rb
117
- - fix/support/coverage.rb
118
133
  - lib/qi.rb
119
- - lib/qi/result.rb
120
- - lib/qi/store.rb
121
- - pkg_checksum
122
- - qi.gemspec
123
- homepage: https://github.com/sashite/qi.rb
134
+ - lib/qi/position.rb
135
+ homepage: https://developer.sashite.com/specs/
124
136
  licenses:
125
137
  - MIT
126
- metadata: {}
138
+ metadata:
139
+ bug_tracker_uri: https://github.com/sashite/qi.rb/issues
140
+ documentation_uri: https://rubydoc.info/gems/qi/index
141
+ source_code_uri: https://github.com/sashite/qi.rb
127
142
  post_install_message:
128
143
  rdoc_options: []
129
144
  require_paths:
@@ -139,10 +154,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
154
  - !ruby/object:Gem::Version
140
155
  version: '0'
141
156
  requirements: []
142
- rubyforge_project:
143
- rubygems_version: 2.4.5.1
157
+ rubygems_version: 3.1.2
144
158
  signing_key:
145
159
  specification_version: 4
146
- summary: Store collections of ordered symbol.
160
+ summary: Represent positions and play moves.
147
161
  test_files: []
148
- 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.1
@@ -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,30 +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, 64 do
7
- on :call, 52, 36, '♙'.to_sym do
8
- on :store do
9
- on :cells do
10
- it do
11
- MUST eql [
12
- nil, nil, nil, nil, nil, nil, nil, nil,
13
- nil, nil, nil, nil, nil, nil, nil, nil,
14
- nil, nil, nil, nil, nil, nil, nil, nil,
15
- nil, nil, nil, nil, nil, nil, nil, nil,
16
- nil, nil, nil, nil, :'♙', nil, nil, nil,
17
- nil, nil, nil, nil, nil, nil, nil, nil,
18
- nil, nil, nil, nil, nil, nil, nil, nil,
19
- nil, nil, nil, nil, nil, nil, nil, nil
20
- ]
21
- end
22
- end
23
- end
24
-
25
- on :deleted_content do
26
- it { MUST be_nil }
27
- end
28
- end
29
- end
30
- 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 [Symbol, 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 [Symbol] 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 collections of ordered symbol.'
8
- spec.description = 'An ordered store to collect symbols for Ruby.'
9
- spec.homepage = 'https://github.com/sashite/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