afterplay 0.1.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.
- checksums.yaml +7 -0
- data/README.md +41 -0
- data/Rakefile +4 -0
- data/lib/afterplay/version.rb +5 -0
- data/lib/afterplay.rb +12 -0
- data/sig/afterplay.rbs +4 -0
- metadata +51 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4df4cc5b025c8ecd29affb434f0cf65ae1b2b05fd8dbb6121358f6ee12f7fe9c
|
4
|
+
data.tar.gz: d8b1e3ec46b073dc932e3e51b8d1f5e57ef60775f95670973d31f181ed010726
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7b872f26943dd51ea75ffebb1c97d17cf09fd5b975dc974d053b624bb5f44972b22c868ac67feaa8cc6ebb6adfbd15b20ddd4b9c144422c2aebfbcd0dfd996b3
|
7
|
+
data.tar.gz: 8f1d38628affb3a6d4629bacaf81193970eba5270eb9d31db12f3d0accd56715545c758dabe3c789d9ac626bd12dba0f8c691a1bd46a53a22d1b1466398d3219
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Afterplay
|
2
|
+
|
3
|
+
Afterplay is a Ruby gem that provides tools and utilities for analyzing shogi games after they have been played (post-game analysis).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'afterplay'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle install
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install afterplay
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require 'afterplay'
|
25
|
+
|
26
|
+
# Usage instructions will be added as features are implemented
|
27
|
+
```
|
28
|
+
|
29
|
+
## Development
|
30
|
+
|
31
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
32
|
+
|
33
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/scrpgil/afterplay.
|
38
|
+
|
39
|
+
## License
|
40
|
+
|
41
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/lib/afterplay.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "afterplay/version"
|
4
|
+
require_relative "afterplay/game"
|
5
|
+
require_relative "afterplay/move"
|
6
|
+
require_relative "afterplay/board"
|
7
|
+
require_relative "afterplay/parser"
|
8
|
+
require_relative "afterplay/analyzer"
|
9
|
+
|
10
|
+
module Afterplay
|
11
|
+
class Error < StandardError; end
|
12
|
+
end
|
data/sig/afterplay.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: afterplay
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- scrpgil
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-06-18 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Afterplay provides tools and utilities for analyzing shogi games after
|
14
|
+
they have been played
|
15
|
+
email:
|
16
|
+
- scraplbuild@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- README.md
|
22
|
+
- Rakefile
|
23
|
+
- lib/afterplay.rb
|
24
|
+
- lib/afterplay/version.rb
|
25
|
+
- sig/afterplay.rbs
|
26
|
+
homepage: https://github.com/scrpgil/afterplay
|
27
|
+
licenses: []
|
28
|
+
metadata:
|
29
|
+
homepage_uri: https://github.com/scrpgil/afterplay
|
30
|
+
source_code_uri: https://github.com/scrpgil/afterplay
|
31
|
+
changelog_uri: https://github.com/scrpgil/afterplay/blob/main/CHANGELOG.md
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options: []
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.0.0
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
requirements: []
|
47
|
+
rubygems_version: 3.4.10
|
48
|
+
signing_key:
|
49
|
+
specification_version: 4
|
50
|
+
summary: A gem to support post-game analysis for shogi
|
51
|
+
test_files: []
|