chessmate 0.8.1 → 0.8.2

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
2
  SHA256:
3
- metadata.gz: e4320f3ff2c0dbac49fb6b11753cf8938f0c15f3777b875af02c708b46772f10
4
- data.tar.gz: e28d1a784d8a824cae0a5bc61918bb83d63d54cf009ea9498f8613059bd2f4e0
3
+ metadata.gz: 5eff4c50ea2e728782b66659f9445403fa7b6259146f8080eeef792bc6205a98
4
+ data.tar.gz: 64d8742b853658b7ea366d0649b0c858a4bc32dfd56bba11bfd1e09d8008c380
5
5
  SHA512:
6
- metadata.gz: b7f3f1928d0584c5bd5f80a7abd7357a1f20170f8280afd987a2a8b50ddf2c7e019abbedfaee572798a2ce60af71c7ede9c2ab2aefbd9cb0bf8dc61ce3363556
7
- data.tar.gz: 713289a71b4b42625de6e98af40a8419b51f7539288e5ee5576837cff48dada6e6176ed1d0d27b06207e9d2ebb1db90ce2a9e570231af622ebfffac5c7acd2bc
6
+ metadata.gz: 7de212e19fbda503f67b9ed871fa20639839901f2f35c927f29f245a42f4f23316028452710e952279c47651dfd381d5c3a9160bf0fbbe64aa240412ecd99a4e
7
+ data.tar.gz: 6f189d1a5e27e04f5f3e4b343830b6095ae807848ae2bec455c2d887b8c5a0e33016492b70de2d135d83bdf63937b8fe8f7b440eda82a6783b14040e2d79b273
File without changes
data/Gemfile CHANGED
File without changes
@@ -9,10 +9,18 @@ GEM
9
9
  specs:
10
10
  ast (2.4.0)
11
11
  coderay (1.1.2)
12
+ coveralls (0.8.23)
13
+ json (>= 1.8, < 3)
14
+ simplecov (~> 0.16.1)
15
+ term-ansicolor (~> 1.3)
16
+ thor (>= 0.19.4, < 2.0)
17
+ tins (~> 1.6)
12
18
  deep_dup (0.0.3)
13
- jaro_winkler (1.5.3)
19
+ docile (1.3.2)
20
+ jaro_winkler (1.5.4)
21
+ json (2.3.0)
14
22
  method_source (0.9.2)
15
- parallel (1.18.0)
23
+ parallel (1.19.1)
16
24
  parser (2.6.5.0)
17
25
  ast (~> 2.4.0)
18
26
  pry (0.12.2)
@@ -28,6 +36,15 @@ GEM
28
36
  ruby-progressbar (~> 1.7)
29
37
  unicode-display_width (>= 1.4.0, < 1.7)
30
38
  ruby-progressbar (1.10.1)
39
+ simplecov (0.16.1)
40
+ docile (~> 1.1)
41
+ json (>= 1.8, < 3)
42
+ simplecov-html (~> 0.10.0)
43
+ simplecov-html (0.10.2)
44
+ term-ansicolor (1.7.1)
45
+ tins (~> 1.0)
46
+ thor (1.0.1)
47
+ tins (1.22.2)
31
48
  unicode-display_width (1.6.0)
32
49
 
33
50
  PLATFORMS
@@ -35,6 +52,7 @@ PLATFORMS
35
52
 
36
53
  DEPENDENCIES
37
54
  chessmate!
55
+ coveralls (>= 0.8.23)
38
56
  pry (~> 0)
39
57
  rspec (~> 0)
40
58
  rubocop (= 0.75.1)
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -3,15 +3,18 @@
3
3
  </p>
4
4
  <h2 align="center">A dead-simple chess validation gem for Rails</h2>
5
5
  <p align="center">
6
+ <a href="https://rubygems.org/gems/chessmate">
7
+ <img src="https://img.shields.io/gem/v/chessmate">
8
+ </a>
6
9
  <a href="https://travis-ci.com/pawptart/ChessMate">
7
10
  <img src="https://travis-ci.com/pawptart/ChessMate.svg?branch=master">
8
11
  </a>
12
+ <a href='https://coveralls.io/github/pawptart/ChessMate?branch=coveralls'>
13
+ <img src='https://coveralls.io/repos/github/pawptart/ChessMate/badge.svg?branch=coveralls' alt='Coverage Status' />
14
+ </a>
9
15
  <a href="https://github.com/pawptart/ChessMate/issues">
10
16
  <img src="https://img.shields.io/github/issues/pawptart/chessmate">
11
17
  </a>
12
- <a href="https://rubygems.org/gems/chessmate">
13
- <img src="https://img.shields.io/gem/v/chessmate">
14
- </a>
15
18
  </p>
16
19
 
17
20
  ## About
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -4,7 +4,7 @@ require 'spec_helper'
4
4
  require_relative '../lib/chessmate'
5
5
  require_relative '../lib/helpers/notation_parser'
6
6
  require_relative '../lib/helpers/default'
7
- Dir['../lib/pieces/*.rb'].each { |file| require file }
7
+ Dir['../lib/pieces/*.rb'].sort.each { |file| require file }
8
8
 
9
9
  describe ChessMate do
10
10
  describe 'initialize method' do
File without changes
File without changes
File without changes
@@ -15,6 +15,10 @@
15
15
  # it.
16
16
  #
17
17
  # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
18
+
19
+ require 'coveralls'
20
+ Coveralls.wear!
21
+
18
22
  RSpec.configure do |config|
19
23
  config.before(:suite) do
20
24
  ENV.fetch('TEST', 'true')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chessmate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyler Porter
@@ -10,6 +10,20 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2019-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: coveralls
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.8.23
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.8.23
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: pry
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -114,7 +128,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
128
  - !ruby/object:Gem::Version
115
129
  version: '0'
116
130
  requirements: []
117
- rubygems_version: 3.0.3
131
+ rubyforge_project:
132
+ rubygems_version: 2.7.6.2
118
133
  signing_key:
119
134
  specification_version: 4
120
135
  summary: Chess for Rails