ach_builder 0.2.1 → 0.2.2
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/.ruby-version +1 -1
- data/Gemfile +1 -1
- data/ach_builder.gemspec +1 -1
- data/lib/ach/batch/builder.rb +27 -8
- data/lib/ach/component.rb +57 -12
- data/lib/ach/component/has_many_association.rb +57 -19
- data/lib/ach/constants.rb +8 -1
- data/lib/ach/file.rb +5 -2
- data/lib/ach/file/builder.rb +45 -16
- data/lib/ach/file/reader.rb +31 -0
- data/lib/ach/file/transmission_header.rb +19 -5
- data/lib/ach/formatter.rb +33 -11
- data/lib/ach/formatter/rule.rb +6 -3
- data/lib/ach/record/base.rb +54 -14
- data/lib/ach/record/dynamic.rb +18 -2
- data/lib/ach/record/entry.rb +12 -4
- data/lib/ach/validations.rb +23 -9
- data/lib/ach/version.rb +2 -1
- data/lib/ach_builder.rb +5 -0
- data/tmp/metric_fu/_data/20111221.yml +7231 -0
- metadata +22 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ach_builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TMX Credit
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2014-01-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rspec
|
@@ -58,7 +58,7 @@ description: Ruby tools for building ACH (Automated Clearing House) files
|
|
58
58
|
email:
|
59
59
|
- rubygems@tmxcredit.com
|
60
60
|
- AKuzko@sphereconsultinginc.com
|
61
|
-
-
|
61
|
+
- blake131313@gmail.com
|
62
62
|
executables: []
|
63
63
|
extensions: []
|
64
64
|
extra_rdoc_files: []
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- spec/support/examples/well_fargo_empty.ach
|
113
113
|
- spec/support/examples/well_fargo_with_data.ach
|
114
114
|
- spec/support/helpers/ach_files_examples.rb
|
115
|
+
- tmp/metric_fu/_data/20111221.yml
|
115
116
|
homepage: https://github.com/TMXCredit/ach_builder
|
116
117
|
licenses:
|
117
118
|
- MIT
|
@@ -132,8 +133,24 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
133
|
version: '0'
|
133
134
|
requirements: []
|
134
135
|
rubyforge_project:
|
135
|
-
rubygems_version: 2.
|
136
|
+
rubygems_version: 2.1.11
|
136
137
|
signing_key:
|
137
138
|
specification_version: 4
|
138
139
|
summary: Ruby tools for building ACH files
|
139
|
-
test_files:
|
140
|
+
test_files:
|
141
|
+
- spec/batch_spec.rb
|
142
|
+
- spec/componenet/has_many_association_spec.rb
|
143
|
+
- spec/file_spec.rb
|
144
|
+
- spec/formatter_spec.rb
|
145
|
+
- spec/reader_spec.rb
|
146
|
+
- spec/record/addenda_spec.rb
|
147
|
+
- spec/record/base_spec.rb
|
148
|
+
- spec/record/dynamic_spec.rb
|
149
|
+
- spec/record/entry_spec.rb
|
150
|
+
- spec/record/tail_spec.rb
|
151
|
+
- spec/spec_helper.rb
|
152
|
+
- spec/support/ach_file_factory.rb
|
153
|
+
- spec/support/examples/well_fargo_empty.ach
|
154
|
+
- spec/support/examples/well_fargo_with_data.ach
|
155
|
+
- spec/support/helpers/ach_files_examples.rb
|
156
|
+
has_rdoc:
|