ach 0.4.4 → 0.4.5
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/lib/ach/records/batch_header.rb +1 -1
- data/lib/ach/version.rb +1 -1
- metadata +26 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bfd9520e3afb6094fcadedacdfdebabfdf84c19
|
|
4
|
+
data.tar.gz: f2cfb5df41b903ae5e994bb23b5d8e1facc20b15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2519907b216fb98cb36b6bf8748ef0d014a021cdbda6a97bc653c7f72f7922ed05d1e1488d1f02096b60e5757bf33ae879fe271833d912188fdea93d5d2fa706
|
|
7
|
+
data.tar.gz: 1d6e01c513a5bdeb6bd46374ec42f69d371ddd2116947f73aa6c40eee187a68b0d07159baaa9049ad36832dff6053f505b3747c0ff789c295b23e88f1c722b3e
|
|
@@ -14,7 +14,7 @@ module ACH::Records
|
|
|
14
14
|
field :company_identification_code_designator, String, nil, '1',
|
|
15
15
|
/\A[0-9 ]\z/
|
|
16
16
|
field :company_identification, String,
|
|
17
|
-
nil, nil, /\A
|
|
17
|
+
nil, nil, /\A[a-zA-Z0-9 ]{9}\z/
|
|
18
18
|
# TODO This should be used to determine whether other records are valid for
|
|
19
19
|
# this code. Should there be a Class for each code?
|
|
20
20
|
# The default of PPD is purely for my benefit (Jared Morgan)
|
data/lib/ach/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ach
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jared Morgan
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: micronaut
|
|
@@ -33,34 +33,34 @@ extensions: []
|
|
|
33
33
|
extra_rdoc_files:
|
|
34
34
|
- README.md
|
|
35
35
|
files:
|
|
36
|
-
- lib/ach/
|
|
37
|
-
- lib/ach/
|
|
36
|
+
- lib/ach/batch.rb
|
|
37
|
+
- lib/ach/ach_file.rb
|
|
38
|
+
- lib/ach/records/addendum.rb
|
|
39
|
+
- lib/ach/records/file_control.rb
|
|
38
40
|
- lib/ach/records/batch_header.rb
|
|
41
|
+
- lib/ach/records/record.rb
|
|
39
42
|
- lib/ach/records/entry_detail.rb
|
|
43
|
+
- lib/ach/records/file_header.rb
|
|
44
|
+
- lib/ach/records/batch_control.rb
|
|
40
45
|
- lib/ach/records/nines.rb
|
|
41
|
-
- lib/ach/records/file_control.rb
|
|
42
|
-
- lib/ach/records/record.rb
|
|
43
|
-
- lib/ach/records/addendum.rb
|
|
44
|
-
- lib/ach/ach_file.rb
|
|
45
46
|
- lib/ach/field_identifiers.rb
|
|
46
47
|
- lib/ach/version.rb
|
|
47
|
-
- lib/ach/batch.rb
|
|
48
48
|
- lib/ach.rb
|
|
49
49
|
- MIT-LICENSE
|
|
50
50
|
- README.md
|
|
51
|
-
- examples/
|
|
52
|
-
- examples/ach/
|
|
51
|
+
- examples/ach/parse_example.rb
|
|
52
|
+
- examples/ach/records/shared/batch_summaries.rb
|
|
53
|
+
- examples/ach/records/ctx_entry_detail_test.rb
|
|
53
54
|
- examples/ach/records/batch_control_example.rb
|
|
54
55
|
- examples/ach/records/ctx_entry_detail_example.rb
|
|
55
|
-
- examples/ach/records/file_header_example.rb
|
|
56
|
-
- examples/ach/records/ctx_entry_detail_test.rb
|
|
57
|
-
- examples/ach/records/nines_example.rb
|
|
58
|
-
- examples/ach/records/shared/batch_summaries.rb
|
|
59
56
|
- examples/ach/records/batch_header_example.rb
|
|
60
|
-
- examples/ach/
|
|
57
|
+
- examples/ach/records/nines_example.rb
|
|
58
|
+
- examples/ach/records/file_header_example.rb
|
|
59
|
+
- examples/ach/field_identifiers_example.rb
|
|
61
60
|
- examples/ach/ach_file_example.rb
|
|
62
61
|
- examples/ach/batch_example.rb
|
|
63
|
-
- examples/ach/
|
|
62
|
+
- examples/ach/fixtures/return_noc.txt
|
|
63
|
+
- examples/example_helper.rb
|
|
64
64
|
homepage: https://github.com/jm81/ach
|
|
65
65
|
licenses: []
|
|
66
66
|
metadata: {}
|
|
@@ -80,22 +80,22 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
version: '0'
|
|
81
81
|
requirements: []
|
|
82
82
|
rubyforge_project:
|
|
83
|
-
rubygems_version: 2.0.
|
|
83
|
+
rubygems_version: 2.0.3
|
|
84
84
|
signing_key:
|
|
85
85
|
specification_version: 4
|
|
86
86
|
summary: Helper for building ACH files
|
|
87
87
|
test_files:
|
|
88
|
-
- examples/
|
|
89
|
-
- examples/ach/
|
|
88
|
+
- examples/ach/parse_example.rb
|
|
89
|
+
- examples/ach/records/shared/batch_summaries.rb
|
|
90
|
+
- examples/ach/records/ctx_entry_detail_test.rb
|
|
90
91
|
- examples/ach/records/batch_control_example.rb
|
|
91
92
|
- examples/ach/records/ctx_entry_detail_example.rb
|
|
92
|
-
- examples/ach/records/file_header_example.rb
|
|
93
|
-
- examples/ach/records/ctx_entry_detail_test.rb
|
|
94
|
-
- examples/ach/records/nines_example.rb
|
|
95
|
-
- examples/ach/records/shared/batch_summaries.rb
|
|
96
93
|
- examples/ach/records/batch_header_example.rb
|
|
97
|
-
- examples/ach/
|
|
94
|
+
- examples/ach/records/nines_example.rb
|
|
95
|
+
- examples/ach/records/file_header_example.rb
|
|
96
|
+
- examples/ach/field_identifiers_example.rb
|
|
98
97
|
- examples/ach/ach_file_example.rb
|
|
99
98
|
- examples/ach/batch_example.rb
|
|
100
|
-
- examples/ach/
|
|
99
|
+
- examples/ach/fixtures/return_noc.txt
|
|
100
|
+
- examples/example_helper.rb
|
|
101
101
|
has_rdoc:
|