union_bank-e_crediting 0.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4aea3632f33f1c9d1149a76b770dc3d26e17d4e9
4
- data.tar.gz: 64c0c5527442b56b34bde72e7c208476294c7536
2
+ SHA256:
3
+ metadata.gz: 83fe712564b36b301b8f9860e4c08eb733fd72df84aa179f8aead4303ad84f29
4
+ data.tar.gz: 242a4351d1c5fee4b961949b83c3dff4e42ba4cd3e329d83640c570190d33af0
5
5
  SHA512:
6
- metadata.gz: 5a7144edc2682a8f55fb33c2789bd527af2ff80e2c8d6d299dfe2d45c35fa0817724e01d2f26a3b59ce929a3f60cacf246b86134a280d83f57cf1489756f273e
7
- data.tar.gz: 92372ffc2051cb34c7d813f1eaf8d6eb3908fa2cfc4c3c0808be75b0dc9862426d60565525a9eab6d89f12f1f808152392b4bdcd3a2bb04ae5f157d9b26c99e6
6
+ metadata.gz: c9e5b3c44f3e0a4f796bf8c4d595388638c9a1960b8ce6bc1c0880ed0da5558c3a4d07e9ea1ffa7ec20a7a3a7cf4d86ba2bae08389fa5c6fbb71624e76b3706a
7
+ data.tar.gz: 8157ce0545991ed5045b7fdf53d9965c137317a7178e26a37b905e3b416820f1507d7fb90564ed84df074a5efe03021dfbd7b1566ec32bf38e94526dc4446105
@@ -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/union_bank-e_crediting.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
@@ -1,6 +1,7 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
3
  /Gemfile.lock
4
+ /gemfiles/*.lock
4
5
  /_yardoc/
5
6
  /coverage/
6
7
  /doc/
data/.rubocop.yml ADDED
@@ -0,0 +1,5 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ AllCops:
4
+ NewCops: enable
5
+
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,194 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2022-12-09 07:10:21 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: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
12
+ # Include: **/*.gemspec
13
+ Gemspec/OrderedDependencies:
14
+ Exclude:
15
+ - 'union_bank-e_crediting.gemspec'
16
+
17
+ # Offense count: 1
18
+ # This cop supports safe autocorrection (--autocorrect).
19
+ # Configuration parameters: Include.
20
+ # Include: **/*.gemspec
21
+ Gemspec/RequireMFA:
22
+ Exclude:
23
+ - 'union_bank-e_crediting.gemspec'
24
+
25
+ # Offense count: 1
26
+ # Configuration parameters: Include.
27
+ # Include: **/*.gemspec
28
+ Gemspec/RequiredRubyVersion:
29
+ Exclude:
30
+ - 'union_bank-e_crediting.gemspec'
31
+
32
+ # Offense count: 1
33
+ # This cop supports safe autocorrection (--autocorrect).
34
+ Layout/EmptyLineAfterMagicComment:
35
+ Exclude:
36
+ - 'union_bank-e_crediting.gemspec'
37
+
38
+ # Offense count: 2
39
+ # This cop supports safe autocorrection (--autocorrect).
40
+ # Configuration parameters: EnforcedStyle.
41
+ # SupportedStyles: empty_lines, no_empty_lines
42
+ Layout/EmptyLinesAroundBlockBody:
43
+ Exclude:
44
+ - 'spec/union_bank/e_crediting/enrollment_file_spec.rb'
45
+ - 'spec/union_bank/e_crediting/transaction_file_spec.rb'
46
+
47
+ # Offense count: 7
48
+ # This cop supports safe autocorrection (--autocorrect).
49
+ # Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator.
50
+ # SupportedStylesForExponentOperator: space, no_space
51
+ Layout/SpaceAroundOperators:
52
+ Exclude:
53
+ - 'spec/union_bank/e_crediting/common/header_line_spec.rb'
54
+ - 'spec/union_bank/e_crediting/enrollment_file/detail_line_spec.rb'
55
+ - 'spec/union_bank/e_crediting/transaction_file/detail_line_spec.rb'
56
+
57
+ # Offense count: 2
58
+ # This cop supports safe autocorrection (--autocorrect).
59
+ Lint/AmbiguousOperator:
60
+ Exclude:
61
+ - 'lib/union_bank/e_crediting/enrollment_file.rb'
62
+ - 'lib/union_bank/e_crediting/transaction_file.rb'
63
+
64
+ # Offense count: 1
65
+ # Configuration parameters: AllowComments, AllowNil.
66
+ Lint/SuppressedException:
67
+ Exclude:
68
+ - 'Rakefile'
69
+
70
+ # Offense count: 4
71
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
72
+ # AllowedMethods: refine
73
+ Metrics/BlockLength:
74
+ Max: 37
75
+
76
+ # Offense count: 7
77
+ # This cop supports safe autocorrection (--autocorrect).
78
+ # Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, AllowedMethods, AllowedPatterns, IgnoredMethods, AllowBracesOnProceduralOneLiners, BracesRequiredMethods.
79
+ # SupportedStyles: line_count_based, semantic, braces_for_chaining, always_braces
80
+ # ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
81
+ # FunctionalMethods: let, let!, subject, watch
82
+ # AllowedMethods: lambda, proc, it
83
+ Style/BlockDelimiters:
84
+ Exclude:
85
+ - 'spec/union_bank/e_crediting/common/header_line_spec.rb'
86
+ - 'spec/union_bank/e_crediting/enrollment_file/detail_line_spec.rb'
87
+ - 'spec/union_bank/e_crediting/enrollment_file_spec.rb'
88
+ - 'spec/union_bank/e_crediting/transaction_file/detail_line_spec.rb'
89
+ - 'spec/union_bank/e_crediting/transaction_file_spec.rb'
90
+
91
+ # Offense count: 2
92
+ # This cop supports unsafe autocorrection (--autocorrect-all).
93
+ # Configuration parameters: EnforcedStyle.
94
+ # SupportedStyles: nested, compact
95
+ Style/ClassAndModuleChildren:
96
+ Exclude:
97
+ - 'lib/union_bank/e_crediting/enrollment_file/detail_line.rb'
98
+ - 'lib/union_bank/e_crediting/transaction_file/detail_line.rb'
99
+
100
+ # Offense count: 1
101
+ # This cop supports safe autocorrection (--autocorrect).
102
+ Style/Encoding:
103
+ Exclude:
104
+ - 'union_bank-e_crediting.gemspec'
105
+
106
+ # Offense count: 2
107
+ # This cop supports safe autocorrection (--autocorrect).
108
+ Style/ExpandPathArguments:
109
+ Exclude:
110
+ - 'spec/spec_helper.rb'
111
+ - 'union_bank-e_crediting.gemspec'
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/union_bank/e_crediting/transaction_file/detail_line.rb'
120
+
121
+ # Offense count: 20
122
+ # This cop supports unsafe autocorrection (--autocorrect-all).
123
+ # Configuration parameters: EnforcedStyle.
124
+ # SupportedStyles: always, always_true, never
125
+ Style/FrozenStringLiteralComment:
126
+ Enabled: false
127
+
128
+ # Offense count: 1
129
+ # This cop supports unsafe autocorrection (--autocorrect-all).
130
+ # Configuration parameters: EnforcedStyle.
131
+ # SupportedStyles: literals, strict
132
+ Style/MutableConstant:
133
+ Exclude:
134
+ - 'lib/union_bank/e_crediting/version.rb'
135
+
136
+ # Offense count: 2
137
+ # This cop supports safe autocorrection (--autocorrect).
138
+ # Configuration parameters: PreferredDelimiters.
139
+ Style/PercentLiteralDelimiters:
140
+ Exclude:
141
+ - 'union_bank-e_crediting.gemspec'
142
+
143
+ # Offense count: 2
144
+ # This cop supports safe autocorrection (--autocorrect).
145
+ Style/RedundantPercentQ:
146
+ Exclude:
147
+ - 'union_bank-e_crediting.gemspec'
148
+
149
+ # Offense count: 115
150
+ # This cop supports safe autocorrection (--autocorrect).
151
+ # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
152
+ # SupportedStyles: single_quotes, double_quotes
153
+ Style/StringLiterals:
154
+ Exclude:
155
+ - 'Rakefile'
156
+ - 'bin/console'
157
+ - 'lib/union_bank/e_crediting.rb'
158
+ - 'lib/union_bank/e_crediting/common/header_line.rb'
159
+ - 'lib/union_bank/e_crediting/enrollment_file/detail_line.rb'
160
+ - 'lib/union_bank/e_crediting/pipe_delimited_file.rb'
161
+ - 'lib/union_bank/e_crediting/transaction_file.rb'
162
+ - 'lib/union_bank/e_crediting/transaction_file/detail_line.rb'
163
+ - 'lib/union_bank/e_crediting/version.rb'
164
+ - 'spec/union_bank/e_crediting/common/header_line_spec.rb'
165
+ - 'spec/union_bank/e_crediting/enrollment_file/detail_line_spec.rb'
166
+ - 'spec/union_bank/e_crediting/enrollment_file_spec.rb'
167
+ - 'spec/union_bank/e_crediting/transaction_file/detail_line_spec.rb'
168
+ - 'spec/union_bank/e_crediting/transaction_file_spec.rb'
169
+ - 'union_bank-e_crediting.gemspec'
170
+
171
+ # Offense count: 3
172
+ # This cop supports safe autocorrection (--autocorrect).
173
+ # Configuration parameters: EnforcedStyleForMultiline.
174
+ # SupportedStylesForMultiline: comma, consistent_comma, no_comma
175
+ Style/TrailingCommaInArrayLiteral:
176
+ Exclude:
177
+ - 'lib/union_bank/e_crediting/transaction_file/detail_line.rb'
178
+ - 'spec/union_bank/e_crediting/enrollment_file_spec.rb'
179
+ - 'spec/union_bank/e_crediting/transaction_file_spec.rb'
180
+
181
+ # Offense count: 3
182
+ # This cop supports safe autocorrection (--autocorrect).
183
+ # Configuration parameters: EnforcedStyleForMultiline.
184
+ # SupportedStylesForMultiline: comma, consistent_comma, no_comma
185
+ Style/TrailingCommaInHashLiteral:
186
+ Exclude:
187
+ - 'spec/union_bank/e_crediting/transaction_file_spec.rb'
188
+
189
+ # Offense count: 5
190
+ # This cop supports safe autocorrection (--autocorrect).
191
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
192
+ # URISchemes: http, https
193
+ Layout/LineLength:
194
+ Max: 124
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 5.0.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 5.1.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 5.2.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 6.0.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 6.1.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', '~> 7.0.0'
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec path: '../'
4
+
5
+ gem 'activerecord', github: 'rails/rails'
@@ -6,7 +6,7 @@ module UnionBank
6
6
 
7
7
  # @return [Array<UnionBank::ECrediting::EnrollmentFile::DetailLine>]
8
8
  def detail_lines
9
- @detail_lines ||= details.map { |detail| DetailLine.new detail }
9
+ @detail_lines ||= details.map { |detail| DetailLine.new **detail }
10
10
  end
11
11
  end
12
12
  end
@@ -41,7 +41,9 @@ module UnionBank
41
41
  end
42
42
 
43
43
  def detail_lines
44
+ # :nocov:
44
45
  raise NotImplementedError, "#{self.class} must implement #detail_lines"
46
+ # :nocov:
45
47
  end
46
48
 
47
49
  private
@@ -9,7 +9,7 @@ module UnionBank
9
9
  # @return [Array<UnionBank::ECrediting::TransactionFile::DetailLine>]
10
10
  def detail_lines
11
11
  @detail_lines ||= details.each_with_index.map do |detail, index|
12
- DetailLine.new detail.merge(ref_number: (index + 1))
12
+ DetailLine.new **detail.merge(ref_number: (index + 1))
13
13
  end
14
14
  end
15
15
  end
@@ -1,5 +1,7 @@
1
+ # :nocov:
1
2
  module UnionBank
2
3
  module ECrediting
3
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
4
5
  end
5
6
  end
7
+ # :nocov:
@@ -19,10 +19,12 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
- spec.add_development_dependency "bundler", "~> 1.9"
23
- spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency "bundler", "> 1.17", "< 3"
23
+ spec.add_development_dependency "rake"
24
24
  spec.add_development_dependency "rspec"
25
+ spec.add_development_dependency "rubocop_challenger"
26
+ spec.add_development_dependency "simplecov"
25
27
 
26
- spec.add_dependency "activesupport"
27
- spec.add_dependency "activemodel"
28
+ spec.add_dependency "activesupport", "> 5.2"
29
+ spec.add_dependency "activemodel", "> 5.2"
28
30
  end
metadata CHANGED
@@ -1,43 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: union_bank-e_crediting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronald Maravilla
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-03 00:00:00.000000000 Z
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.9'
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: '1.9'
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: '10.0'
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: '10.0'
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: activesupport
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: :runtime
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: activemodel
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: :runtime
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: Generates file contents for UnionBank's eCrediting enrollment and transaction
84
118
  files.
85
119
  email:
@@ -88,8 +122,12 @@ executables: []
88
122
  extensions: []
89
123
  extra_rdoc_files: []
90
124
  files:
125
+ - ".github/workflows/rubocop-challenger.yml"
126
+ - ".github/workflows/test-suite.yml"
91
127
  - ".gitignore"
92
128
  - ".rspec"
129
+ - ".rubocop.yml"
130
+ - ".rubocop_todo.yml"
93
131
  - ".travis.yml"
94
132
  - CODE_OF_CONDUCT.md
95
133
  - Gemfile
@@ -98,6 +136,13 @@ files:
98
136
  - Rakefile
99
137
  - bin/console
100
138
  - bin/setup
139
+ - gemfiles/Gemfile.rails-5.0.x
140
+ - gemfiles/Gemfile.rails-5.1.x
141
+ - gemfiles/Gemfile.rails-5.2.x
142
+ - gemfiles/Gemfile.rails-6.0.x
143
+ - gemfiles/Gemfile.rails-6.1.x
144
+ - gemfiles/Gemfile.rails-7.0.x
145
+ - gemfiles/Gemfile.rails-edge
101
146
  - lib/union_bank/e_crediting.rb
102
147
  - lib/union_bank/e_crediting/common.rb
103
148
  - lib/union_bank/e_crediting/common/header_line.rb
@@ -112,7 +157,7 @@ homepage: https://github.com/payrollhero/union_bank-e_crediting
112
157
  licenses:
113
158
  - BSD-3-Clause
114
159
  metadata: {}
115
- post_install_message:
160
+ post_install_message:
116
161
  rdoc_options: []
117
162
  require_paths:
118
163
  - lib
@@ -127,11 +172,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
127
172
  - !ruby/object:Gem::Version
128
173
  version: '0'
129
174
  requirements: []
130
- rubyforge_project:
131
- rubygems_version: 2.2.3
132
- signing_key:
175
+ rubygems_version: 3.2.33
176
+ signing_key:
133
177
  specification_version: 4
134
178
  summary: Generates file contents for UnionBank's eCrediting enrollment and transaction
135
179
  files.
136
180
  test_files: []
137
- has_rdoc: