usps_flags-grades 0.1.6 → 0.2.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 +4 -4
- data/.rubocop.yml +6 -5
- data/.ruby-version +1 -1
- data/Gemfile.lock +47 -36
- data/lib/usps_flags/grades.rb +1 -5
- data/usps_flags-grades.gemspec +3 -3
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9749d6b6ce66a68cd2db41101a095b3ba495610e923e5609d7596c1ba663dd8c
|
|
4
|
+
data.tar.gz: fede057122ee72e77dafa0242e1766287d8fd7f0bfed8f3fd2ea054e59b146fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c42fa6cc8a48b9c8bf340d3c07c51e83374bd79679b0ed7697bc937891eb434cd071e41128bc81cca04773a16697dc8b1dbbcd3e9c7aca712b16bad9744807eb
|
|
7
|
+
data.tar.gz: 8091514bacf8bd7229b1fe7a7d05f55a63cf8e3f1d1aa8e588309bcbddb721fd161b847b387c5e0e64aa33c4f28573068ad961fb3decfe23016eaec4c1951c90
|
data/.rubocop.yml
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
require: rubocop-rspec
|
|
2
2
|
AllCops:
|
|
3
|
-
TargetRubyVersion:
|
|
3
|
+
TargetRubyVersion: 3.0
|
|
4
4
|
Exclude:
|
|
5
5
|
- lib/output/*
|
|
6
6
|
- tmp/**/*
|
|
7
7
|
- vendor/**/*
|
|
8
|
+
NewCops: enable
|
|
8
9
|
|
|
9
|
-
Layout/
|
|
10
|
+
Layout/FirstHashElementIndentation:
|
|
10
11
|
EnforcedStyle: consistent
|
|
11
12
|
Layout/AccessModifierIndentation:
|
|
12
13
|
EnforcedStyle: outdent
|
|
13
14
|
Layout/EmptyLinesAroundAccessModifier:
|
|
14
15
|
Enabled: true
|
|
15
|
-
Layout/
|
|
16
|
+
Layout/ArrayAlignment:
|
|
16
17
|
Enabled: true
|
|
17
|
-
Layout/
|
|
18
|
+
Layout/HashAlignment:
|
|
18
19
|
Enabled: true
|
|
19
20
|
Layout/EmptyLineAfterGuardClause:
|
|
20
21
|
Enabled: true
|
|
@@ -51,7 +52,7 @@ Metrics/CyclomaticComplexity:
|
|
|
51
52
|
Metrics/AbcSize:
|
|
52
53
|
Enabled: true
|
|
53
54
|
|
|
54
|
-
Naming/
|
|
55
|
+
Naming/MethodParameterName:
|
|
55
56
|
Enabled: false
|
|
56
57
|
Naming/AccessorMethodName:
|
|
57
58
|
Enabled: false
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.7
|
data/Gemfile.lock
CHANGED
|
@@ -1,60 +1,71 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
usps_flags-grades (0.
|
|
4
|
+
usps_flags-grades (0.2.0)
|
|
5
5
|
usps_flags (~> 0.5, >= 0.5.5)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
ast (2.4.
|
|
11
|
-
diff-lcs (1.
|
|
12
|
-
docile (1.
|
|
10
|
+
ast (2.4.2)
|
|
11
|
+
diff-lcs (1.5.1)
|
|
12
|
+
docile (1.4.0)
|
|
13
13
|
file_utils (1.1.2)
|
|
14
|
-
jaro_winkler (1.5.2)
|
|
15
|
-
json (2.3.1)
|
|
16
14
|
mini_magick (4.12.0)
|
|
17
|
-
parallel (1.
|
|
18
|
-
parser (
|
|
19
|
-
ast (~> 2.4.
|
|
20
|
-
|
|
15
|
+
parallel (1.24.0)
|
|
16
|
+
parser (3.3.1.0)
|
|
17
|
+
ast (~> 2.4.1)
|
|
18
|
+
racc
|
|
19
|
+
racc (1.7.3)
|
|
20
|
+
rainbow (3.1.1)
|
|
21
21
|
rake (12.3.3)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
rspec-
|
|
28
|
-
|
|
22
|
+
regexp_parser (2.9.2)
|
|
23
|
+
rexml (3.2.8)
|
|
24
|
+
strscan (>= 3.0.9)
|
|
25
|
+
rspec (3.13.0)
|
|
26
|
+
rspec-core (~> 3.13.0)
|
|
27
|
+
rspec-expectations (~> 3.13.0)
|
|
28
|
+
rspec-mocks (~> 3.13.0)
|
|
29
|
+
rspec-core (3.13.0)
|
|
30
|
+
rspec-support (~> 3.13.0)
|
|
31
|
+
rspec-expectations (3.13.0)
|
|
29
32
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
30
|
-
rspec-support (~> 3.
|
|
31
|
-
rspec-mocks (3.
|
|
33
|
+
rspec-support (~> 3.13.0)
|
|
34
|
+
rspec-mocks (3.13.1)
|
|
32
35
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
33
|
-
rspec-support (~> 3.
|
|
34
|
-
rspec-support (3.
|
|
35
|
-
rubocop (0.
|
|
36
|
-
jaro_winkler (~> 1.5.1)
|
|
36
|
+
rspec-support (~> 3.13.0)
|
|
37
|
+
rspec-support (3.13.1)
|
|
38
|
+
rubocop (0.93.1)
|
|
37
39
|
parallel (~> 1.10)
|
|
38
|
-
parser (>= 2.
|
|
40
|
+
parser (>= 2.7.1.5)
|
|
39
41
|
rainbow (>= 2.2.2, < 4.0)
|
|
42
|
+
regexp_parser (>= 1.8)
|
|
43
|
+
rexml
|
|
44
|
+
rubocop-ast (>= 0.6.0)
|
|
40
45
|
ruby-progressbar (~> 1.7)
|
|
41
|
-
unicode-display_width (>= 1.4.0, <
|
|
42
|
-
rubocop-
|
|
43
|
-
|
|
44
|
-
|
|
46
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
|
47
|
+
rubocop-ast (1.31.3)
|
|
48
|
+
parser (>= 3.3.1.0)
|
|
49
|
+
rubocop-rspec (1.44.1)
|
|
50
|
+
rubocop (~> 0.87)
|
|
51
|
+
rubocop-ast (>= 0.7.1)
|
|
52
|
+
ruby-progressbar (1.13.0)
|
|
45
53
|
rubyzip (1.3.0)
|
|
46
|
-
simplecov (0.
|
|
47
|
-
docile (~> 1.1
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
simplecov-html (0.
|
|
51
|
-
|
|
52
|
-
|
|
54
|
+
simplecov (0.22.0)
|
|
55
|
+
docile (~> 1.1)
|
|
56
|
+
simplecov-html (~> 0.11)
|
|
57
|
+
simplecov_json_formatter (~> 0.1)
|
|
58
|
+
simplecov-html (0.12.3)
|
|
59
|
+
simplecov_json_formatter (0.1.4)
|
|
60
|
+
strscan (3.1.0)
|
|
61
|
+
unicode-display_width (1.8.0)
|
|
62
|
+
usps_flags (0.7.0)
|
|
53
63
|
file_utils (~> 1.1, >= 1.1.2)
|
|
54
64
|
mini_magick (~> 4.9, >= 4.9.4)
|
|
55
65
|
rubyzip (~> 1.3, >= 1.3.0)
|
|
56
66
|
|
|
57
67
|
PLATFORMS
|
|
68
|
+
arm64-darwin-23
|
|
58
69
|
ruby
|
|
59
70
|
|
|
60
71
|
DEPENDENCIES
|
|
@@ -66,4 +77,4 @@ DEPENDENCIES
|
|
|
66
77
|
usps_flags-grades!
|
|
67
78
|
|
|
68
79
|
BUNDLED WITH
|
|
69
|
-
|
|
80
|
+
2.5.10
|
data/lib/usps_flags/grades.rb
CHANGED
|
@@ -39,11 +39,7 @@ class USPSFlags
|
|
|
39
39
|
yield self if block_given?
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
attr_accessor :grade
|
|
43
|
-
attr_accessor :edpro
|
|
44
|
-
attr_accessor :membership
|
|
45
|
-
attr_accessor :merit_marks
|
|
46
|
-
attr_accessor :outfile
|
|
42
|
+
attr_accessor :grade, :edpro, :membership, :merit_marks, :outfile
|
|
47
43
|
|
|
48
44
|
# Generates the constructed file as SVG.
|
|
49
45
|
#
|
data/usps_flags-grades.gemspec
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'usps_flags-grades'
|
|
5
|
-
s.version = '0.
|
|
6
|
-
s.date = '
|
|
5
|
+
s.version = '0.2.0'
|
|
6
|
+
s.date = '2024-05-17'
|
|
7
7
|
s.summary = 'Insignia generator for United States Power Squadrons'
|
|
8
8
|
s.description = 'An extension to the flag image generator for United States Power Squadrons to generate insignia.'
|
|
9
9
|
s.homepage = 'http://rubygems.org/gems/usps_flags-grades'
|
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
s.files = `git ls-files`.split("\n")
|
|
15
15
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
|
16
16
|
|
|
17
|
-
s.required_ruby_version = '>=
|
|
17
|
+
s.required_ruby_version = '>= 3.0'
|
|
18
18
|
|
|
19
19
|
s.add_runtime_dependency 'usps_flags', '~> 0.5', '>= 0.5.5'
|
|
20
20
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: usps_flags-grades
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Fiander
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-05-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: usps_flags
|
|
@@ -163,7 +163,7 @@ homepage: http://rubygems.org/gems/usps_flags-grades
|
|
|
163
163
|
licenses:
|
|
164
164
|
- GPL-3.0
|
|
165
165
|
metadata: {}
|
|
166
|
-
post_install_message:
|
|
166
|
+
post_install_message:
|
|
167
167
|
rdoc_options: []
|
|
168
168
|
require_paths:
|
|
169
169
|
- lib
|
|
@@ -172,15 +172,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
172
172
|
requirements:
|
|
173
173
|
- - ">="
|
|
174
174
|
- !ruby/object:Gem::Version
|
|
175
|
-
version: '
|
|
175
|
+
version: '3.0'
|
|
176
176
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
177
|
requirements:
|
|
178
178
|
- - ">="
|
|
179
179
|
- !ruby/object:Gem::Version
|
|
180
180
|
version: '0'
|
|
181
181
|
requirements: []
|
|
182
|
-
rubygems_version: 3.2.
|
|
183
|
-
signing_key:
|
|
182
|
+
rubygems_version: 3.2.33
|
|
183
|
+
signing_key:
|
|
184
184
|
specification_version: 4
|
|
185
185
|
summary: Insignia generator for United States Power Squadrons
|
|
186
186
|
test_files:
|