sashite-cell 2.0.2 → 4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sashite-cell
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cyril Kato
@@ -11,20 +11,27 @@ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
12
  description: CELL defines a standardized format for representing coordinates on multi-dimensional
13
13
  game boards using a cyclical ASCII character system. This gem provides a Ruby interface
14
- for working with unlimited dimensional game coordinates through a clean, functional
15
- API that strictly follows the CELL Specification v1.0.0.
14
+ for working with up to 3-dimensional game coordinates (max index value 255) through
15
+ a clean, object-oriented API that strictly follows the CELL Specification v1.0.0.
16
16
  email: contact@cyril.email
17
17
  executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - LICENSE.md
21
+ - LICENSE
22
22
  - README.md
23
23
  - lib/sashite-cell.rb
24
24
  - lib/sashite/cell.rb
25
+ - lib/sashite/cell/constants.rb
26
+ - lib/sashite/cell/coordinate.rb
27
+ - lib/sashite/cell/errors.rb
28
+ - lib/sashite/cell/errors/argument.rb
29
+ - lib/sashite/cell/errors/argument/messages.rb
30
+ - lib/sashite/cell/formatter.rb
31
+ - lib/sashite/cell/parser.rb
25
32
  homepage: https://github.com/sashite/cell.rb
26
33
  licenses:
27
- - MIT
34
+ - Apache-2.0
28
35
  metadata:
29
36
  bug_tracker_uri: https://github.com/sashite/cell.rb/issues
30
37
  documentation_uri: https://rubydoc.info/github/sashite/cell.rb/main
@@ -48,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
48
55
  - !ruby/object:Gem::Version
49
56
  version: '0'
50
57
  requirements: []
51
- rubygems_version: 3.7.2
58
+ rubygems_version: 4.0.3
52
59
  specification_version: 4
53
60
  summary: CELL (Coordinate Encoding for Layered Locations) implementation for Ruby
54
61
  test_files: []
data/LICENSE.md DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2025 Sashite
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.