pgn3 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.
@@ -0,0 +1,19 @@
1
+ require 'pgn'
2
+
3
+ # This file was generated by the `rspec --init` command. Conventionally, all
4
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
5
+ # Require this file using `require "spec_helper"` to ensure that it is only
6
+ # loaded once.
7
+ #
8
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
9
+ RSpec.configure do |config|
10
+ config.treat_symbols_as_metadata_keys_with_true_values = true
11
+ config.run_all_when_everything_filtered = true
12
+ config.filter_run :focus
13
+
14
+ # Run specs in random order to surface order dependencies. If you find an
15
+ # order dependency and want to debug it, you can fix the order by providing
16
+ # the seed, which is printed after each run.
17
+ # --seed 1234
18
+ config.order = 'random'
19
+ end
metadata ADDED
@@ -0,0 +1,169 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pgn3
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Stacey Touset
8
+ - Murilo Vasconcelos
9
+ - Alexis Vargas
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2022-10-06 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: whittle
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: bundler
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '2.3'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '2.3'
43
+ - !ruby/object:Gem::Dependency
44
+ name: pry
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: rake
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ - !ruby/object:Gem::Dependency
72
+ name: rspec
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ description: A PGN parser and FEN generator for Ruby
86
+ email:
87
+ - stacey@touset.org
88
+ - muriloime@gmail.com
89
+ - lexisvar@gmail.comm
90
+ executables: []
91
+ extensions: []
92
+ extra_rdoc_files: []
93
+ files:
94
+ - ".gitignore"
95
+ - ".rspec"
96
+ - Gemfile
97
+ - LICENSE.txt
98
+ - README.md
99
+ - Rakefile
100
+ - TODO.md
101
+ - examples/immortal_game.pgn
102
+ - lib/pgn.rb
103
+ - lib/pgn/board.rb
104
+ - lib/pgn/fen.rb
105
+ - lib/pgn/game.rb
106
+ - lib/pgn/move.rb
107
+ - lib/pgn/move_calculator.rb
108
+ - lib/pgn/parser.rb
109
+ - lib/pgn/position.rb
110
+ - lib/pgn/version.rb
111
+ - pgn3.gemspec
112
+ - spec/fen_spec.rb
113
+ - spec/game_spec.rb
114
+ - spec/parser_spec.rb
115
+ - spec/pgn_files/alternate_castling.pgn
116
+ - spec/pgn_files/annotations.pgn
117
+ - spec/pgn_files/comments.pgn
118
+ - spec/pgn_files/empty_variation_move.pgn
119
+ - spec/pgn_files/fen.pgn
120
+ - spec/pgn_files/multiline_comments.pgn
121
+ - spec/pgn_files/nested_comments.pgn
122
+ - spec/pgn_files/no_moves.pgn
123
+ - spec/pgn_files/test.pgn
124
+ - spec/pgn_files/two_annotations.pgn
125
+ - spec/pgn_files/two_games.pgn
126
+ - spec/pgn_files/variations.pgn
127
+ - spec/position_spec.rb
128
+ - spec/spec_helper.rb
129
+ homepage: https://github.com/lexisvar/pgn.git
130
+ licenses:
131
+ - MIT
132
+ metadata: {}
133
+ post_install_message:
134
+ rdoc_options: []
135
+ require_paths:
136
+ - lib
137
+ required_ruby_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ requirements: []
148
+ rubygems_version: 3.2.32
149
+ signing_key:
150
+ specification_version: 4
151
+ summary: A PGN parser for Ruby
152
+ test_files:
153
+ - spec/fen_spec.rb
154
+ - spec/game_spec.rb
155
+ - spec/parser_spec.rb
156
+ - spec/pgn_files/alternate_castling.pgn
157
+ - spec/pgn_files/annotations.pgn
158
+ - spec/pgn_files/comments.pgn
159
+ - spec/pgn_files/empty_variation_move.pgn
160
+ - spec/pgn_files/fen.pgn
161
+ - spec/pgn_files/multiline_comments.pgn
162
+ - spec/pgn_files/nested_comments.pgn
163
+ - spec/pgn_files/no_moves.pgn
164
+ - spec/pgn_files/test.pgn
165
+ - spec/pgn_files/two_annotations.pgn
166
+ - spec/pgn_files/two_games.pgn
167
+ - spec/pgn_files/variations.pgn
168
+ - spec/position_spec.rb
169
+ - spec/spec_helper.rb