zold-score 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/score_suffix/extconf.rb +1 -1
- data/zold-score.gemspec +3 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68392cfa1c2e06dd6c73d634175ee5b9be791022bfe1aa1a4a8cbad3162473d2
|
4
|
+
data.tar.gz: f28d302d34fe57cf1aa6012e5e7a3af4f275f383118aa993196b3a5b19e95d81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfd692c492b853c62786c0a88a8bbca50cd32e61ed544e877689c5b62ac61a2d3f01f1ce1d0690a32a7ecde3ebcd6f18827db92f6411e55d7e574b4dc485f0bc
|
7
|
+
data.tar.gz: f6cef47b4f15809ee287a9a8097dd2a8999eba7fa13e7187da060f1e1cf610737394c1eb01b8a276625a256cf98abd9590cc99983ef4c1d58ae112a72ab29480
|
data/ext/score_suffix/extconf.rb
CHANGED
@@ -24,7 +24,7 @@ require 'mkmf'
|
|
24
24
|
|
25
25
|
# rubocop:disable Style/GlobalVars
|
26
26
|
$warnflags = ''
|
27
|
-
$CXXFLAGS << ' -std=c++11'
|
27
|
+
$CXXFLAGS << ' -std=c++11 -Wno-deprecated-register'
|
28
28
|
$CXXFLAGS.gsub!(/-Wimplicit-int/, '')
|
29
29
|
$CXXFLAGS.gsub!(/-Wdeclaration-after-statement/, '')
|
30
30
|
$CXXFLAGS.gsub!(/-Wimplicit-function-declaration/, '')
|
data/zold-score.gemspec
CHANGED
@@ -27,14 +27,15 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.rubygems_version = '2.2'
|
28
28
|
s.required_ruby_version = '>=2.3'
|
29
29
|
s.name = 'zold-score'
|
30
|
-
s.version = '0.3.
|
30
|
+
s.version = '0.3.2'
|
31
31
|
s.license = 'MIT'
|
32
32
|
s.summary = 'Zold score'
|
33
33
|
s.description = 'Score calculating Ruby Gem for Zold'
|
34
34
|
s.authors = ['Yegor Bugayenko']
|
35
35
|
s.email = 'yegor256@gmail.com'
|
36
36
|
s.homepage = 'http://github.com/zold-io/zold-score'
|
37
|
-
s.files =
|
37
|
+
s.files = `git ls-files`.split($RS)
|
38
|
+
s.extensions = %w[ext/score_suffix/extconf.rb]
|
38
39
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
39
40
|
s.test_files = s.files.grep(%r{^(test|features)/})
|
40
41
|
s.rdoc_options = ['--charset=UTF-8']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zold-score
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: codecov
|
@@ -111,7 +111,8 @@ dependencies:
|
|
111
111
|
description: Score calculating Ruby Gem for Zold
|
112
112
|
email: yegor256@gmail.com
|
113
113
|
executables: []
|
114
|
-
extensions:
|
114
|
+
extensions:
|
115
|
+
- ext/score_suffix/extconf.rb
|
115
116
|
extra_rdoc_files:
|
116
117
|
- README.md
|
117
118
|
- LICENSE.txt
|
@@ -131,7 +132,6 @@ files:
|
|
131
132
|
- appveyor.yml
|
132
133
|
- ext/score_suffix/ScoreSuffix.cpp
|
133
134
|
- ext/score_suffix/extconf.rb
|
134
|
-
- lib/score_suffix/score_suffix.so
|
135
135
|
- lib/zold/score.rb
|
136
136
|
- test/zold/test_score.rb
|
137
137
|
- zold-score.gemspec
|