china_bank-payroll_text_file 1.0.0 → 1.1.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 +5 -5
- data/.github/workflows/rubocop-challenger.yml +26 -0
- data/.github/workflows/test-suite.yml +50 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +5 -0
- data/.rubocop_todo.yml +212 -0
- data/china_bank-payroll_text_file.gemspec +6 -4
- data/gemfiles/Gemfile.rails-5.0.x +5 -0
- data/gemfiles/Gemfile.rails-5.1.x +5 -0
- data/gemfiles/Gemfile.rails-5.2.x +5 -0
- data/gemfiles/Gemfile.rails-6.0.x +5 -0
- data/gemfiles/Gemfile.rails-6.1.x +5 -0
- data/gemfiles/Gemfile.rails-7.0.x +5 -0
- data/gemfiles/Gemfile.rails-edge +5 -0
- data/lib/china_bank/payroll_text_file/file.rb +1 -1
- data/lib/china_bank/payroll_text_file/version.rb +3 -1
- data/lib/china_bank/payroll_text_file.rb +1 -1
- metadata +63 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ea22c19fb5773d0f186810657d7a729e3c45139db4bad4d8af52655b8a50108b
|
4
|
+
data.tar.gz: 22fe1f71c2d9bf83ad60a6dc57c09ab9c4b522ca5821f1d460d0c292cb6db9a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9828393ea9a92edf7bc67f361fd18e28d2b50ebadf14956d582979f2c765f895530a5cb561b3ad5b29fdb33d0742150b6ba760efdd3931dd30de6d355c78681b
|
7
|
+
data.tar.gz: b50fb25c0582775b16fabb55ac08898d67d5faa349a03fa508b899a8498dd52156ae852e96315e9f6ce9ab652e0248cddcc1a0925c9ceea71704e95058cec331
|
@@ -0,0 +1,26 @@
|
|
1
|
+
name: "RuboCop Challenge"
|
2
|
+
|
3
|
+
on:
|
4
|
+
schedule:
|
5
|
+
- cron: '30 23 * * 2,3,4' # この設定の場合、火水木のAM8:30に自動でPRが作られます。
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
create-pr:
|
9
|
+
name: Create Pull Request
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
- name: Set up Ruby 2.7
|
14
|
+
uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: 2.7.6
|
17
|
+
- name: Install bundler
|
18
|
+
run: gem install bundler
|
19
|
+
- name: Install gems
|
20
|
+
run: bundle install --jobs 4 --retry 3
|
21
|
+
- name: Set git configuration
|
22
|
+
run: git config remote.origin.url "git@github.com:payrollhero/china_bank-payroll_text_file.git" # プロジェクトごとに変わる値です。
|
23
|
+
- name: Create RuboCop challenge pull request
|
24
|
+
env:
|
25
|
+
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
26
|
+
run: bundle exec rubocop_challenger go --base-branch=master --email=rubocop@payrollhero.com --name="Rubocop Challenger" --mode=random
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# This workflow uses actions that are not certified by GitHub.
|
2
|
+
# They are provided by a third-party and are governed by
|
3
|
+
# separate terms of service, privacy policy, and support
|
4
|
+
# documentation.
|
5
|
+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
|
6
|
+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
|
7
|
+
|
8
|
+
name: test-suite
|
9
|
+
|
10
|
+
on: [push, pull_request]
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
test:
|
14
|
+
runs-on: ubuntu-20.04
|
15
|
+
strategy:
|
16
|
+
fail-fast: false
|
17
|
+
matrix:
|
18
|
+
gemfile: ["rails-7.0.x"]
|
19
|
+
ruby: [3.2]
|
20
|
+
include:
|
21
|
+
- gemfile: rails-7.0.x
|
22
|
+
ruby: '3.1'
|
23
|
+
- gemfile: rails-7.0.x
|
24
|
+
ruby: '3.0'
|
25
|
+
- gemfile: rails-7.0.x
|
26
|
+
ruby: '2.7'
|
27
|
+
- gemfile: rails-6.1.x
|
28
|
+
ruby: '3.1'
|
29
|
+
- gemfile: rails-6.1.x
|
30
|
+
ruby: '3.0'
|
31
|
+
- gemfile: rails-6.1.x
|
32
|
+
ruby: 2.7
|
33
|
+
- gemfile: rails-6.1.x
|
34
|
+
ruby: 2.6
|
35
|
+
- gemfile: rails-6.0.x
|
36
|
+
ruby: 2.7
|
37
|
+
- gemfile: rails-6.0.x
|
38
|
+
ruby: 2.6
|
39
|
+
- gemfile: rails-5.2.x
|
40
|
+
ruby: 2.6
|
41
|
+
|
42
|
+
env:
|
43
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.${{ matrix.gemfile }}
|
44
|
+
steps:
|
45
|
+
- uses: actions/checkout@v2
|
46
|
+
- uses: ruby/setup-ruby@v1
|
47
|
+
with:
|
48
|
+
ruby-version: ${{ matrix.ruby }}
|
49
|
+
bundler-cache: true
|
50
|
+
- run: bundle exec rake
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,212 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2022-12-09 07:11:15 UTC using RuboCop version 1.39.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
# This cop supports safe autocorrection (--autocorrect).
|
11
|
+
# Configuration parameters: Include.
|
12
|
+
# Include: **/*.gemspec
|
13
|
+
Gemspec/DeprecatedAttributeAssignment:
|
14
|
+
Exclude:
|
15
|
+
- 'china_bank-payroll_text_file.gemspec'
|
16
|
+
|
17
|
+
# Offense count: 1
|
18
|
+
# This cop supports safe autocorrection (--autocorrect).
|
19
|
+
# Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
|
20
|
+
# Include: **/*.gemspec
|
21
|
+
Gemspec/OrderedDependencies:
|
22
|
+
Exclude:
|
23
|
+
- 'china_bank-payroll_text_file.gemspec'
|
24
|
+
|
25
|
+
# Offense count: 1
|
26
|
+
# This cop supports safe autocorrection (--autocorrect).
|
27
|
+
# Configuration parameters: Include.
|
28
|
+
# Include: **/*.gemspec
|
29
|
+
Gemspec/RequireMFA:
|
30
|
+
Exclude:
|
31
|
+
- 'china_bank-payroll_text_file.gemspec'
|
32
|
+
|
33
|
+
# Offense count: 1
|
34
|
+
# Configuration parameters: Include.
|
35
|
+
# Include: **/*.gemspec
|
36
|
+
Gemspec/RequiredRubyVersion:
|
37
|
+
Exclude:
|
38
|
+
- 'china_bank-payroll_text_file.gemspec'
|
39
|
+
|
40
|
+
# Offense count: 1
|
41
|
+
# This cop supports safe autocorrection (--autocorrect).
|
42
|
+
Layout/EmptyLineAfterMagicComment:
|
43
|
+
Exclude:
|
44
|
+
- 'china_bank-payroll_text_file.gemspec'
|
45
|
+
|
46
|
+
# Offense count: 2
|
47
|
+
# This cop supports safe autocorrection (--autocorrect).
|
48
|
+
# Configuration parameters: EnforcedStyle.
|
49
|
+
# SupportedStyles: empty_lines, no_empty_lines
|
50
|
+
Layout/EmptyLinesAroundBlockBody:
|
51
|
+
Exclude:
|
52
|
+
- 'spec/china_bank/payroll_text_file/line_spec.rb'
|
53
|
+
|
54
|
+
# Offense count: 4
|
55
|
+
# This cop supports safe autocorrection (--autocorrect).
|
56
|
+
# Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
57
|
+
# SupportedStyles: space, no_space
|
58
|
+
# SupportedStylesForEmptyBraces: space, no_space
|
59
|
+
Layout/SpaceInsideBlockBraces:
|
60
|
+
Exclude:
|
61
|
+
- 'spec/china_bank/payroll_text_file/file_spec.rb'
|
62
|
+
- 'spec/china_bank/payroll_text_file_spec.rb'
|
63
|
+
|
64
|
+
# Offense count: 1
|
65
|
+
# This cop supports safe autocorrection (--autocorrect).
|
66
|
+
Layout/SpaceInsideRangeLiteral:
|
67
|
+
Exclude:
|
68
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
69
|
+
|
70
|
+
# Offense count: 1
|
71
|
+
# Configuration parameters: AllowComments, AllowNil.
|
72
|
+
Lint/SuppressedException:
|
73
|
+
Exclude:
|
74
|
+
- 'Rakefile'
|
75
|
+
|
76
|
+
# Offense count: 10
|
77
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
78
|
+
# AllowedMethods: refine
|
79
|
+
Metrics/BlockLength:
|
80
|
+
Max: 61
|
81
|
+
|
82
|
+
# Offense count: 1
|
83
|
+
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
84
|
+
Metrics/MethodLength:
|
85
|
+
Max: 11
|
86
|
+
|
87
|
+
# Offense count: 5
|
88
|
+
# This cop supports safe autocorrection (--autocorrect).
|
89
|
+
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, IgnoredMethods, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
|
90
|
+
# SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
|
91
|
+
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
92
|
+
# FunctionalMethods: let, let!, subject, watch
|
93
|
+
# AllowedMethods: lambda, proc, it
|
94
|
+
Style/BlockDelimiters:
|
95
|
+
Exclude:
|
96
|
+
- 'spec/china_bank/payroll_text_file/file_spec.rb'
|
97
|
+
- 'spec/china_bank/payroll_text_file/line_spec.rb'
|
98
|
+
- 'spec/china_bank/payroll_text_file_spec.rb'
|
99
|
+
|
100
|
+
# Offense count: 1
|
101
|
+
# This cop supports safe autocorrection (--autocorrect).
|
102
|
+
Style/Encoding:
|
103
|
+
Exclude:
|
104
|
+
- 'china_bank-payroll_text_file.gemspec'
|
105
|
+
|
106
|
+
# Offense count: 2
|
107
|
+
# This cop supports safe autocorrection (--autocorrect).
|
108
|
+
Style/ExpandPathArguments:
|
109
|
+
Exclude:
|
110
|
+
- 'china_bank-payroll_text_file.gemspec'
|
111
|
+
- 'spec/spec_helper.rb'
|
112
|
+
|
113
|
+
# Offense count: 1
|
114
|
+
# This cop supports safe autocorrection (--autocorrect).
|
115
|
+
# Configuration parameters: EnforcedStyle.
|
116
|
+
# SupportedStyles: format, sprintf, percent
|
117
|
+
Style/FormatString:
|
118
|
+
Exclude:
|
119
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
120
|
+
|
121
|
+
# Offense count: 13
|
122
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
123
|
+
# Configuration parameters: EnforcedStyle.
|
124
|
+
# SupportedStyles: always, always_true, never
|
125
|
+
Style/FrozenStringLiteralComment:
|
126
|
+
Exclude:
|
127
|
+
- 'Gemfile'
|
128
|
+
- 'Rakefile'
|
129
|
+
- 'bin/console'
|
130
|
+
- 'china_bank-payroll_text_file.gemspec'
|
131
|
+
- 'lib/china_bank/payroll_text_file.rb'
|
132
|
+
- 'lib/china_bank/payroll_text_file/file.rb'
|
133
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
134
|
+
- 'lib/china_bank/payroll_text_file/version.rb'
|
135
|
+
- 'spec/china_bank/payroll_text_file/file_spec.rb'
|
136
|
+
- 'spec/china_bank/payroll_text_file/line_spec.rb'
|
137
|
+
- 'spec/china_bank/payroll_text_file_spec.rb'
|
138
|
+
- 'spec/china_bank/version_spec.rb'
|
139
|
+
- 'spec/spec_helper.rb'
|
140
|
+
|
141
|
+
# Offense count: 1
|
142
|
+
# This cop supports safe autocorrection (--autocorrect).
|
143
|
+
Style/KeywordParametersOrder:
|
144
|
+
Exclude:
|
145
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
146
|
+
|
147
|
+
# Offense count: 3
|
148
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
149
|
+
# Configuration parameters: EnforcedStyle.
|
150
|
+
# SupportedStyles: literals, strict
|
151
|
+
Style/MutableConstant:
|
152
|
+
Exclude:
|
153
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
154
|
+
- 'lib/china_bank/payroll_text_file/version.rb'
|
155
|
+
|
156
|
+
# Offense count: 1
|
157
|
+
# This cop supports safe autocorrection (--autocorrect).
|
158
|
+
# Configuration parameters: AllowedMethods.
|
159
|
+
# AllowedMethods: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with
|
160
|
+
Style/NestedParenthesizedCalls:
|
161
|
+
Exclude:
|
162
|
+
- 'lib/china_bank/payroll_text_file/file.rb'
|
163
|
+
|
164
|
+
# Offense count: 2
|
165
|
+
# This cop supports safe autocorrection (--autocorrect).
|
166
|
+
# Configuration parameters: PreferredDelimiters.
|
167
|
+
Style/PercentLiteralDelimiters:
|
168
|
+
Exclude:
|
169
|
+
- 'china_bank-payroll_text_file.gemspec'
|
170
|
+
|
171
|
+
# Offense count: 1
|
172
|
+
# This cop supports unsafe autocorrection (--autocorrect-all).
|
173
|
+
Style/RedundantInterpolation:
|
174
|
+
Exclude:
|
175
|
+
- 'spec/china_bank/payroll_text_file/line_spec.rb'
|
176
|
+
|
177
|
+
# Offense count: 2
|
178
|
+
# This cop supports safe autocorrection (--autocorrect).
|
179
|
+
Style/RedundantPercentQ:
|
180
|
+
Exclude:
|
181
|
+
- 'china_bank-payroll_text_file.gemspec'
|
182
|
+
|
183
|
+
# Offense count: 147
|
184
|
+
# This cop supports safe autocorrection (--autocorrect).
|
185
|
+
# Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
|
186
|
+
# SupportedStyles: single_quotes, double_quotes
|
187
|
+
Style/StringLiterals:
|
188
|
+
Exclude:
|
189
|
+
- 'Rakefile'
|
190
|
+
- 'bin/console'
|
191
|
+
- 'china_bank-payroll_text_file.gemspec'
|
192
|
+
- 'lib/china_bank/payroll_text_file.rb'
|
193
|
+
- 'lib/china_bank/payroll_text_file/file.rb'
|
194
|
+
- 'lib/china_bank/payroll_text_file/line.rb'
|
195
|
+
- 'lib/china_bank/payroll_text_file/version.rb'
|
196
|
+
- 'spec/china_bank/payroll_text_file/file_spec.rb'
|
197
|
+
- 'spec/china_bank/payroll_text_file/line_spec.rb'
|
198
|
+
- 'spec/china_bank/payroll_text_file_spec.rb'
|
199
|
+
|
200
|
+
# Offense count: 1
|
201
|
+
# This cop supports safe autocorrection (--autocorrect).
|
202
|
+
# Configuration parameters: MinSize, WordRegex.
|
203
|
+
# SupportedStyles: percent, brackets
|
204
|
+
Style/WordArray:
|
205
|
+
EnforcedStyle: brackets
|
206
|
+
|
207
|
+
# Offense count: 3
|
208
|
+
# This cop supports safe autocorrection (--autocorrect).
|
209
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
|
210
|
+
# URISchemes: http, https
|
211
|
+
Layout/LineLength:
|
212
|
+
Max: 126
|
@@ -20,10 +20,12 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
|
-
spec.add_development_dependency "bundler", "
|
24
|
-
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "bundler", "> 1.17", "< 3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
25
|
spec.add_development_dependency "rspec"
|
26
|
+
spec.add_development_dependency "rubocop_challenger"
|
27
|
+
spec.add_development_dependency "simplecov"
|
26
28
|
|
27
|
-
spec.add_dependency "activesupport"
|
28
|
-
spec.add_dependency "activemodel"
|
29
|
+
spec.add_dependency "activesupport", "> 5.2"
|
30
|
+
spec.add_dependency "activemodel", "> 5.2"
|
29
31
|
end
|
@@ -22,7 +22,7 @@ module ChinaBank
|
|
22
22
|
|
23
23
|
# @return [Array<ChinaBank::PayrollTextFile::Line>
|
24
24
|
def credit_lines
|
25
|
-
transactions.map { |transaction| Line.new transaction.merge(transaction_type: Line::TYPES[:credit]) }
|
25
|
+
transactions.map { |transaction| Line.new **transaction.merge(transaction_type: Line::TYPES[:credit]) }
|
26
26
|
end
|
27
27
|
|
28
28
|
# @return [ChinaBank::PayrollTextFile::Line]
|
metadata
CHANGED
@@ -1,43 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: china_bank-payroll_text_file
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ronald Maravilla
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.17'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3'
|
20
23
|
type: :development
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.17'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
32
|
+
version: '3'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rake
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- - "
|
37
|
+
- - ">="
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
39
|
+
version: '0'
|
34
40
|
type: :development
|
35
41
|
prerelease: false
|
36
42
|
version_requirements: !ruby/object:Gem::Requirement
|
37
43
|
requirements:
|
38
|
-
- - "
|
44
|
+
- - ">="
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
46
|
+
version: '0'
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: rspec
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,13 +59,13 @@ dependencies:
|
|
53
59
|
- !ruby/object:Gem::Version
|
54
60
|
version: '0'
|
55
61
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
62
|
+
name: rubocop_challenger
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
58
64
|
requirements:
|
59
65
|
- - ">="
|
60
66
|
- !ruby/object:Gem::Version
|
61
67
|
version: '0'
|
62
|
-
type: :
|
68
|
+
type: :development
|
63
69
|
prerelease: false
|
64
70
|
version_requirements: !ruby/object:Gem::Requirement
|
65
71
|
requirements:
|
@@ -67,19 +73,47 @@ dependencies:
|
|
67
73
|
- !ruby/object:Gem::Version
|
68
74
|
version: '0'
|
69
75
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
76
|
+
name: simplecov
|
71
77
|
requirement: !ruby/object:Gem::Requirement
|
72
78
|
requirements:
|
73
79
|
- - ">="
|
74
80
|
- !ruby/object:Gem::Version
|
75
81
|
version: '0'
|
76
|
-
type: :
|
82
|
+
type: :development
|
77
83
|
prerelease: false
|
78
84
|
version_requirements: !ruby/object:Gem::Requirement
|
79
85
|
requirements:
|
80
86
|
- - ">="
|
81
87
|
- !ruby/object:Gem::Version
|
82
88
|
version: '0'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: activesupport
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '5.2'
|
96
|
+
type: :runtime
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ">"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '5.2'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: activemodel
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '5.2'
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '5.2'
|
83
117
|
description: A payroll text file generator for China Bank
|
84
118
|
email:
|
85
119
|
- rmaravilla@payrollhero.com
|
@@ -89,8 +123,12 @@ executables:
|
|
89
123
|
extensions: []
|
90
124
|
extra_rdoc_files: []
|
91
125
|
files:
|
126
|
+
- ".github/workflows/rubocop-challenger.yml"
|
127
|
+
- ".github/workflows/test-suite.yml"
|
92
128
|
- ".gitignore"
|
93
129
|
- ".rspec"
|
130
|
+
- ".rubocop.yml"
|
131
|
+
- ".rubocop_todo.yml"
|
94
132
|
- ".travis.yml"
|
95
133
|
- CODE_OF_CONDUCT.md
|
96
134
|
- Gemfile
|
@@ -100,6 +138,13 @@ files:
|
|
100
138
|
- bin/console
|
101
139
|
- bin/setup
|
102
140
|
- china_bank-payroll_text_file.gemspec
|
141
|
+
- gemfiles/Gemfile.rails-5.0.x
|
142
|
+
- gemfiles/Gemfile.rails-5.1.x
|
143
|
+
- gemfiles/Gemfile.rails-5.2.x
|
144
|
+
- gemfiles/Gemfile.rails-6.0.x
|
145
|
+
- gemfiles/Gemfile.rails-6.1.x
|
146
|
+
- gemfiles/Gemfile.rails-7.0.x
|
147
|
+
- gemfiles/Gemfile.rails-edge
|
103
148
|
- lib/china_bank/payroll_text_file.rb
|
104
149
|
- lib/china_bank/payroll_text_file/file.rb
|
105
150
|
- lib/china_bank/payroll_text_file/line.rb
|
@@ -109,7 +154,7 @@ homepage: https://github.com/payrollhero/china_bank-payroll_text_file
|
|
109
154
|
licenses:
|
110
155
|
- BSD-3-Clause
|
111
156
|
metadata: {}
|
112
|
-
post_install_message:
|
157
|
+
post_install_message:
|
113
158
|
rdoc_options: []
|
114
159
|
require_paths:
|
115
160
|
- lib
|
@@ -124,10 +169,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
169
|
- !ruby/object:Gem::Version
|
125
170
|
version: '0'
|
126
171
|
requirements: []
|
127
|
-
|
128
|
-
|
129
|
-
signing_key:
|
172
|
+
rubygems_version: 3.2.33
|
173
|
+
signing_key:
|
130
174
|
specification_version: 4
|
131
175
|
summary: A payroll text file generator for China Bank
|
132
176
|
test_files: []
|
133
|
-
has_rdoc:
|