bankserv 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/.gitignore +6 -0
  2. data/.rvmrc +1 -0
  3. data/Gemfile +16 -0
  4. data/Rakefile +8 -0
  5. data/bankserv.gemspec +31 -0
  6. data/config.ru +7 -0
  7. data/lib/bankserv.rb +48 -0
  8. data/lib/bankserv/account_holder_verification.rb +90 -0
  9. data/lib/bankserv/bank_account.rb +19 -0
  10. data/lib/bankserv/configuration.rb +67 -0
  11. data/lib/bankserv/credit.rb +70 -0
  12. data/lib/bankserv/debit.rb +94 -0
  13. data/lib/bankserv/eft.rb +83 -0
  14. data/lib/bankserv/engine.rb +183 -0
  15. data/lib/bankserv/engine/engine_configuration.rb +12 -0
  16. data/lib/bankserv/engine/engine_process.rb +3 -0
  17. data/lib/bankserv/request.rb +27 -0
  18. data/lib/bankserv/transaction.rb +22 -0
  19. data/lib/bankserv/transmission/document.rb +43 -0
  20. data/lib/bankserv/transmission/input_document.rb +84 -0
  21. data/lib/bankserv/transmission/output_document.rb +27 -0
  22. data/lib/bankserv/transmission/record.rb +13 -0
  23. data/lib/bankserv/transmission/reply_document.rb +27 -0
  24. data/lib/bankserv/transmission/set.rb +120 -0
  25. data/lib/bankserv/transmission/set/account_holder_verification.rb +81 -0
  26. data/lib/bankserv/transmission/set/account_holder_verification_output.rb +17 -0
  27. data/lib/bankserv/transmission/set/credit.rb +44 -0
  28. data/lib/bankserv/transmission/set/debit.rb +44 -0
  29. data/lib/bankserv/transmission/set/document.rb +45 -0
  30. data/lib/bankserv/transmission/set/eft.rb +228 -0
  31. data/lib/bankserv/transmission/set/eft_output.rb +12 -0
  32. data/lib/bankserv/transmission/set/eft_redirect.rb +18 -0
  33. data/lib/bankserv/transmission/set/eft_unpaid.rb +18 -0
  34. data/lib/bankserv/transmission/set/reply.rb +47 -0
  35. data/lib/bankserv/transmission/statement.rb +46 -0
  36. data/lib/bankserv/version.rb +3 -0
  37. data/lib/config/ahv.yml +9 -0
  38. data/lib/core_extensions.rb +37 -0
  39. data/lib/generators/active_record/bankserv_generator.rb +30 -0
  40. data/lib/generators/active_record/templates/migration.rb +141 -0
  41. data/spec/examples/ahv_input_file.txt +7 -0
  42. data/spec/examples/ahv_output_file.txt +7 -0
  43. data/spec/examples/credit_eft_input.txt +166 -0
  44. data/spec/examples/debit_eft_input_file.txt +20 -0
  45. data/spec/examples/eft_input_with_2_sets.txt +8 -0
  46. data/spec/examples/eft_output_file.txt +35 -0
  47. data/spec/examples/host2host/tmp.log +1 -0
  48. data/spec/examples/reply/rejected_transmission.txt +7 -0
  49. data/spec/examples/reply/reply_file.txt +5 -0
  50. data/spec/examples/statement4_unpacked.dat +51 -0
  51. data/spec/examples/tmp/OUTPUT0412153500.txt +35 -0
  52. data/spec/examples/tmp/REPLY0412153000.txt +5 -0
  53. data/spec/factories.rb +90 -0
  54. data/spec/internal/config/database.yml.sample +3 -0
  55. data/spec/internal/config/routes.rb +3 -0
  56. data/spec/internal/db/schema.rb +138 -0
  57. data/spec/internal/log/.gitignore +1 -0
  58. data/spec/internal/public/favicon.ico +0 -0
  59. data/spec/lib/bankserv/account_holder_verification_spec.rb +104 -0
  60. data/spec/lib/bankserv/configuration_spec.rb +34 -0
  61. data/spec/lib/bankserv/core_ext_spec.rb +43 -0
  62. data/spec/lib/bankserv/credit_spec.rb +92 -0
  63. data/spec/lib/bankserv/debit_spec.rb +187 -0
  64. data/spec/lib/bankserv/engine/engine_spec.rb +142 -0
  65. data/spec/lib/bankserv/transaction_spec.rb +32 -0
  66. data/spec/lib/bankserv/transmission/input_document_spec.rb +207 -0
  67. data/spec/lib/bankserv/transmission/output_document_spec.rb +210 -0
  68. data/spec/lib/bankserv/transmission/reply_document_spec.rb +117 -0
  69. data/spec/lib/bankserv/transmission/set/account_holder_verification_spec.rb +108 -0
  70. data/spec/lib/bankserv/transmission/set/credit_spec.rb +96 -0
  71. data/spec/lib/bankserv/transmission/set/debit_spec.rb +103 -0
  72. data/spec/lib/bankserv/transmission/statement_spec.rb +109 -0
  73. data/spec/spec_helper.rb +28 -0
  74. data/spec/support/helpers.rb +207 -0
  75. metadata +223 -0
@@ -0,0 +1,28 @@
1
+ # require 'rubygems'
2
+ # require 'bundler/setup'
3
+ #
4
+ # require 'bankserv'
5
+ #
6
+ # RSpec.configure do |config|
7
+ # # some (optional) config here
8
+ # end
9
+
10
+ require 'rubygems'
11
+ require 'bundler'
12
+
13
+ Bundler.require :default, :development
14
+
15
+ Combustion.initialize! :active_record
16
+
17
+ require 'rspec/rails'
18
+
19
+ require './spec/support/helpers.rb'
20
+
21
+ RSpec.configure do |config|
22
+ config.use_transactional_fixtures = true
23
+ config.color_enabled = true
24
+ config.formatter = :documentation # :progress, :html, :textmate
25
+ config.include FactoryGirl::Syntax::Methods
26
+ end
27
+
28
+ FactoryGirl.find_definitions
@@ -0,0 +1,207 @@
1
+ module Helpers
2
+ def tear_it_down
3
+ Bankserv::Configuration.delete_all
4
+ Bankserv::Request.delete_all
5
+
6
+ Bankserv::BankAccount.delete_all
7
+ Bankserv::AccountHolderVerification.delete_all
8
+ Bankserv::Debit.delete_all
9
+ Bankserv::Credit.delete_all
10
+
11
+ Bankserv::Document.delete_all
12
+ Bankserv::Set.delete_all
13
+ Bankserv::Record.delete_all
14
+
15
+ Bankserv::Statement.delete_all
16
+ Bankserv::Transaction.delete_all
17
+ end
18
+
19
+ def create_credit_request
20
+ credit = Bankserv::Credit.request({
21
+ type: 'credit',
22
+ data: {
23
+ type_of_service: "BATCH",
24
+ accepted_report: "Y",
25
+ account_type_correct: "Y",
26
+ batches: [{
27
+ debit: {
28
+ account_number: "4068123456", branch_code: "632005", account_type: '1', id_number: '8207205263083', initials: "RC", account_name: "TESTTEST", amount: 1272216.65, user_ref: "CONTRA_0000846_PMT", action_date: Date.today
29
+ },
30
+ credit: [
31
+ { account_number: '00081136250', branch_code: '050021', account_type: "1", amount: "000015000.00", action_date: Date.today, account_name: "DEWEY ASSOCIATES", user_ref: "_2055185_PAY USER"},
32
+ { account_number: '04051717311', branch_code: '632005', account_type: "1", amount: "000005423.80", action_date: Date.today, account_name: "SURE SLIM WELLNESS CLINIC SA", user_ref: "_2055184_PAY USER"},
33
+ { account_number: '09193079313', branch_code: '632005', account_type: "1", amount: "000002245.00", action_date: Date.today, account_name: "RUGGA KIDS EAST RAND", user_ref: "_2055183_PAY USER"},
34
+ { account_number: '01028268041', branch_code: '102809', account_type: "1", amount: "000001140.00", action_date: Date.today, account_name: "RUGGA KIDS", user_ref: "_2055182_PAY USER"},
35
+ { account_number: '62162065752', branch_code: '250655', account_type: "1", amount: "000000840.00", action_date: Date.today, account_name: "RUGGA KIDS WEST RAND", user_ref: "_2055181_PAY USER"},
36
+ { account_number: '62181078166', branch_code: '222026', account_type: "1", amount: "000002485.88", action_date: Date.today, account_name: "MENLYN PAYROLL ADMINISTRATION", user_ref: "_2055180_PAY USER"},
37
+ { account_number: '00011986778', branch_code: '051001', account_type: "1", amount: "000000460.00", action_date: Date.today, account_name: "SPUTNIC FINANSIELE ADVISEURS", user_ref: "_2055179_PAY USER"},
38
+ { account_number: '00001970534', branch_code: '051001', account_type: "1", amount: "000004246.50", action_date: Date.today, account_name: "AMG", user_ref: "_2055178_PAY USER"},
39
+ { account_number: '04063350931', branch_code: '632005', account_type: "1", amount: "000001750.00", action_date: Date.today, account_name: "CHEMC PUBLISHERS", user_ref: "_2055177_PAY USER"},
40
+ { account_number: '62099422190', branch_code: '250655', account_type: "1", amount: "000002882.70", action_date: Date.today, account_name: "AMUCUS MAKELAARS", user_ref: "_2055176_PAY USER"},
41
+ { account_number: '00012784141', branch_code: '051001', account_type: "1", amount: "000000150.00", action_date: Date.today, account_name: "DYNAMIC FINANCIAL SOLUTIONS", user_ref: "_2055175_PAY USER"},
42
+ { account_number: '62070310843', branch_code: '250655', account_type: "1", amount: "000001790.00", action_date: Date.today, account_name: "PAYROLL MASTERS", user_ref: "_2055174_PAY USER"},
43
+ { account_number: '01220161923', branch_code: '632005', account_type: "1", amount: "000003663.00", action_date: Date.today, account_name: "JCJ ROBBERTZE VENNOTE", user_ref: "_2055173_PAY USER"},
44
+ { account_number: '00000160180', branch_code: '051001', account_type: "1", amount: "000011506.03", action_date: Date.today, account_name: "D BETE FINANCIALS", user_ref: "_2055172_PAY USER"},
45
+ { account_number: '62095194751', branch_code: '250545', account_type: "1", amount: "000012692.80", action_date: Date.today, account_name: "THUKELA METERING CC", user_ref: "_2055171_PAY USER"},
46
+ { account_number: '04071395890', branch_code: '632005', account_type: "1", amount: "000004950.00", action_date: Date.today, account_name: "EAST LONDON SELF STORAGE", user_ref: "_2055170_PAY USER"},
47
+ { account_number: '00071105301', branch_code: '051001', account_type: "1", amount: "000010300.00", action_date: Date.today, account_name: "EMA CAPE TOWN", user_ref: "_2055169_PAY USER"},
48
+ { account_number: '52100657520', branch_code: '260449', account_type: "1", amount: "000002880.00", action_date: Date.today, account_name: "DUIWELSKLOOF LAERSKOOL", user_ref: "_2055168_PAY USER"},
49
+ { account_number: '62054634128', branch_code: '251345', account_type: "1", amount: "000001182.69", action_date: Date.today, account_name: "DANVILLE HULP PROJEK", user_ref: "_2055167_PAY USER"},
50
+ { account_number: '09103104540', branch_code: '632005', account_type: "1", amount: "000002000.00", action_date: Date.today, account_name: "ACADEMY OF ADVANCED TECHNOLOG", user_ref: "_2055166_PAY USER"},
51
+ { account_number: '62028250570', branch_code: '254005', account_type: "1", amount: "000009672.07", action_date: Date.today, account_name: "MOTION TELECOMMUNICATIONS", user_ref: "_2055165_PAY USER"},
52
+ { account_number: '01930012810', branch_code: '193042', account_type: "1", amount: "000051657.27", action_date: Date.today, account_name: "JS INVESTMENTS T/A RENTA SHA", user_ref: "_2055164_PAY USER"},
53
+ { account_number: '04052569658', branch_code: '632005', account_type: "1", amount: "000001040.00", action_date: Date.today, account_name: "SCUBAVERSITY", user_ref: "_2055163_PAY USER"},
54
+ { account_number: '00011948787', branch_code: '011545', account_type: "1", amount: "000016809.00", action_date: Date.today, account_name: "INFOFX", user_ref: "_2055162_PAY USER"},
55
+ { account_number: '00080017436', branch_code: '050017', account_type: "1", amount: "000000695.00", action_date: Date.today, account_name: "OLD GREYS UNION", user_ref: "_2055161_PAY USER"},
56
+ { account_number: '00033268088', branch_code: '052551', account_type: "1", amount: "000001884.35", action_date: Date.today, account_name: "VAN WYK", user_ref: "_2055160_PAY USER"},
57
+ { account_number: '04062574748', branch_code: '632005', account_type: "1", amount: "000002170.68", action_date: Date.today, account_name: "GARYP T/A PICTURE PERFECT", user_ref: "_2055159_PAY USER"},
58
+ { account_number: '01602339775', branch_code: '160245', account_type: "1", amount: "000026390.22", action_date: Date.today, account_name: "G ERASMUS REKENKUNDIGE DIENST", user_ref: "_2055158_PAY USER"},
59
+ { account_number: '00411345060', branch_code: '051001', account_type: "1", amount: "000008233.65", action_date: Date.today, account_name: "PICTURE PERFECT HATFIELD", user_ref: "_2055157_PAY USER"},
60
+ { account_number: '00421498757', branch_code: '009953', account_type: "1", amount: "000003520.00", action_date: Date.today, account_name: "RUGGA KIDS SA PTY LTD", user_ref: "_2055156_PAY USER"},
61
+ { account_number: '00033165599', branch_code: '052546', account_type: "1", amount: "000007920.00", action_date: Date.today, account_name: "RUGGA KIDS PRETORIA", user_ref: "_2055155_PAY USER"},
62
+ { account_number: '00023355743', branch_code: '051001', account_type: "1", amount: "000002340.00", action_date: Date.today, account_name: "RUGGA KIDS SA PTY LTD", user_ref: "_2055154_PAY USER"},
63
+ { account_number: '09075905022', branch_code: '516805', account_type: "1", amount: "000009216.17", action_date: Date.today, account_name: "EXCELL ACCOUNTING SERVICES", user_ref: "_2055153_PAY USER"},
64
+ { account_number: '01419089617', branch_code: '141949', account_type: "1", amount: "000001459.00", action_date: Date.today, account_name: "EXCELLENT HOMEWARE", user_ref: "_2055152_PAY USER"},
65
+ { account_number: '00032985258', branch_code: '051001', account_type: "1", amount: "000007759.62", action_date: Date.today, account_name: "LARIAT TECHNOLOGIES", user_ref: "_2055151_PAY USER"},
66
+ { account_number: '01003360675', branch_code: '632005', account_type: "1", amount: "000016575.00", action_date: Date.today, account_name: "IAASA", user_ref: "_2055150_PAY USER"},
67
+ { account_number: '00200123475', branch_code: '006305', account_type: "1", amount: "000034701.60", action_date: Date.today, account_name: "CCF ASSOCIATES", user_ref: "_2055149_PAY USER"},
68
+ { account_number: '09097479936', branch_code: '632005', account_type: "1", amount: "000004680.00", action_date: Date.today, account_name: "SEEDCAP PTY LTD", user_ref: "_2055148_PAY USER"},
69
+ { account_number: '62092576027', branch_code: '220526', account_type: "1", amount: "000025052.00", action_date: Date.today, account_name: "PICTURE PERFECT DUBAN", user_ref: "_2055147_PAY USER"},
70
+ { account_number: '00628303343', branch_code: '051001', account_type: "1", amount: "000003345.00", action_date: Date.today, account_name: "FAERIE GLEN SELF STORAGE", user_ref: "_2055146_PAY USER"},
71
+ { account_number: '04053302079', branch_code: '632005', account_type: "1", amount: "000013450.00", action_date: Date.today, account_name: "BULLIVANT ACCOUNTING TAX SER", user_ref: "_2055145_PAY USER"},
72
+ { account_number: '01063871270', branch_code: '632005', account_type: "1", amount: "000021600.00", action_date: Date.today, account_name: "TIENERS IN CHRISTUS", user_ref: "_2055144_PAY USER"},
73
+ { account_number: '04049418620', branch_code: '632005', account_type: "1", amount: "000008575.21", action_date: Date.today, account_name: "INTEGRITAS OUDITEURE", user_ref: "_2055143_PAY USER"},
74
+ { account_number: '00425288536', branch_code: '051001', account_type: "1", amount: "000002823.00", action_date: Date.today, account_name: "POOL REPAIR CENTRE", user_ref: "_2055142_PAY USER"},
75
+ { account_number: '01026001439', branch_code: '102642', account_type: "1", amount: "000011480.00", action_date: Date.today, account_name: "MANDRE EIENDOMS TRUST", user_ref: "_2055141_PAY USER"},
76
+ { account_number: '04058643395', branch_code: '632005', account_type: "1", amount: "000001840.94", action_date: Date.today, account_name: "WESSEL SMALBERGER", user_ref: "_2055140_PAY USER"},
77
+ { account_number: '00010242886', branch_code: '632005', account_type: "1", amount: "000003563.40", action_date: Date.today, account_name: "EAST RAND DOCUMENTS SOLUTIONS", user_ref: "_2055139_PAY USER"},
78
+ { account_number: '04058021573', branch_code: '632005', account_type: "1", amount: "000014674.66", action_date: Date.today, account_name: "PICTURE PERFECT", user_ref: "_2055138_PAY USER"},
79
+ { account_number: '00071093664', branch_code: '051001', account_type: "1", amount: "000002100.00", action_date: Date.today, account_name: "EMA KIDS FOUNDATION", user_ref: "_2055137_PAY USER"},
80
+ { account_number: '04052805995', branch_code: '632005', account_type: "1", amount: "000009070.00", action_date: Date.today, account_name: "BIZ AFRICA PTY LTD VON WIEL", user_ref: "_2055136_PAY USER"},
81
+ { account_number: '04059290222', branch_code: '535105', account_type: "1", amount: "000099180.70", action_date: Date.today, account_name: "SQUARE ONE CAPITAL PTY LTD", user_ref: "_2055135_PAY USER"},
82
+ { account_number: '01910177911', branch_code: '191042', account_type: "1", amount: "000021475.00", action_date: Date.today, account_name: "STRYDOM PROKUREURS", user_ref: "_2055134_PAY USER"},
83
+ { account_number: '04063058446', branch_code: '632005', account_type: "1", amount: "000004170.00", action_date: Date.today, account_name: "VIP BIN CLEANING MATLAND", user_ref: "_2055133_PAY USER"},
84
+ { account_number: '01430580201', branch_code: '632005', account_type: "1", amount: "000019003.00", action_date: Date.today, account_name: "NED HERV KERK OOSMOOT", user_ref: "_2055132_PAY USER"},
85
+ { account_number: '01284101932', branch_code: '128405', account_type: "1", amount: "000030289.80", action_date: Date.today, account_name: "PRESSED IN TIME", user_ref: "_2055131_PAY USER"},
86
+ { account_number: '00033211736', branch_code: '051001', account_type: "1", amount: "000001250.00", action_date: Date.today, account_name: "LVP PROKUREURS", user_ref: "_2055130_PAY USER"},
87
+ { account_number: '01128016583', branch_code: '112805', account_type: "1", amount: "000000500.00", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055129_PAY USER"},
88
+ { account_number: '01128016583', branch_code: '112805', account_type: "1", amount: "000001664.81", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055128_PAY USER"},
89
+ { account_number: '01128016567', branch_code: '112805', account_type: "1", amount: "000001529.52", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055127_PAY USER"},
90
+ { account_number: '00402087259', branch_code: '051001', account_type: "1", amount: "000001500.00", action_date: Date.today, account_name: "RUGGA KIDS SA PTY", user_ref: "_2055126_PAY USER"},
91
+ { account_number: '04063531692', branch_code: '632005', account_type: "1", amount: "000003500.00", action_date: Date.today, account_name: "GAUTENG SOCIETY OF ADVOCATES", user_ref: "_2055125_PAY USER"},
92
+ { account_number: '00033190283', branch_code: '052546', account_type: "1", amount: "000110220.20", action_date: Date.today, account_name: "JCM REKENMEESTERS BK", user_ref: "_2055124_PAY USER"},
93
+ { account_number: '00420056084', branch_code: '001255', account_type: "1", amount: "000015812.24", action_date: Date.today, account_name: "NOESIS INC", user_ref: "_2055123_PAY USER"},
94
+ { account_number: '04066398308', branch_code: '632005', account_type: "1", amount: "000015963.60", action_date: Date.today, account_name: "MSR SECURITY", user_ref: "_2055122_PAY USER"},
95
+ { account_number: '62056207527', branch_code: '251655', account_type: "1", amount: "000004264.07", action_date: Date.today, account_name: "JUSTIN HOLMES REGISTERED FINA", user_ref: "_2055121_PAY USER"},
96
+ { account_number: '01284056899', branch_code: '128405', account_type: "1", amount: "000002395.00", action_date: Date.today, account_name: "ATTI", user_ref: "_2055120_PAY USER"},
97
+ { account_number: '01756006202', branch_code: '175605', account_type: "1", amount: "000010380.00", action_date: Date.today, account_name: "LINKSFIELD PRIMARY", user_ref: "_2055119_PAY USER"},
98
+ { account_number: '04052669723', branch_code: '632005', account_type: "1", amount: "000005750.58", action_date: Date.today, account_name: "ODYSSEY SOFTWARE", user_ref: "_2055118_PAY USER"},
99
+ { account_number: '62121300347', branch_code: '230732', account_type: "1", amount: "000000315.00", action_date: Date.today, account_name: "GARDEN OBSESSIONS", user_ref: "_2055117_PAY USER"},
100
+ { account_number: '00073192759', branch_code: '051001', account_type: "1", amount: "000001381.00", action_date: Date.today, account_name: "LIFESTYLE BOOKS MANGANGXA", user_ref: "_2055116_PAY USER"},
101
+ { account_number: '01602117411', branch_code: '160245', account_type: "1", amount: "000020760.00", action_date: Date.today, account_name: "WORLD MISSION CENTRE", user_ref: "_2055115_PAY USER"},
102
+ { account_number: '62064619962', branch_code: '256755', account_type: "1", amount: "000000600.00", action_date: Date.today, account_name: "JABULANI KHAKIBOS KIDS", user_ref: "_2055114_PAY USER"},
103
+ { account_number: '04055472171', branch_code: '632005', account_type: "1", amount: "000000582.50", action_date: Date.today, account_name: "SURE SLIM BENONI/SPRINGS", user_ref: "_2055113_PAY USER"},
104
+ { account_number: '01232026794', branch_code: '123209', account_type: "1", amount: "000018250.00", action_date: Date.today, account_name: "TRISAVE HAMADA", user_ref: "_2055112_PAY USER"},
105
+ { account_number: '04042937322', branch_code: '632005', account_type: "1", amount: "000011071.49", action_date: Date.today, account_name: "THE GUARDIAN GROUP", user_ref: "_2055111_PAY USER"},
106
+ { account_number: '01128016567', branch_code: '112805', account_type: "1", amount: "000000865.93", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055110_PAY USER"},
107
+ { account_number: '62071481205', branch_code: '260146', account_type: "1", amount: "000005580.00", action_date: Date.today, account_name: "BUYS GENOTE MAKELAARS", user_ref: "_2055109_PAY USER"},
108
+ { account_number: '00022750665', branch_code: '051001', account_type: "1", amount: "000011115.00", action_date: Date.today, account_name: "ACCOUNT N TAX CC", user_ref: "_2055108_PAY USER"},
109
+ { account_number: '62049896246', branch_code: '211517', account_type: "1", amount: "000000546.57", action_date: Date.today, account_name: "FORTUIN FUNERAL HOME", user_ref: "_2055107_PAY USER"},
110
+ { account_number: '62112480893', branch_code: '250655', account_type: "1", amount: "000000515.00", action_date: Date.today, account_name: "BLUE WATER", user_ref: "_2055106_PAY USER"},
111
+ { account_number: '04048782638', branch_code: '632005', account_type: "1", amount: "000001497.04", action_date: Date.today, account_name: "DEO GLORIA", user_ref: "_2055105_PAY USER"},
112
+ { account_number: '01150161831', branch_code: '632005', account_type: "1", amount: "000000800.00", action_date: Date.today, account_name: "PETROHOF", user_ref: "_2055104_PAY USER"},
113
+ { account_number: '62000440173', branch_code: '250655', account_type: "1", amount: "000001150.00", action_date: Date.today, account_name: "BENDOR GARDENS", user_ref: "_2055103_PAY USER"},
114
+ { account_number: '62005438470', branch_code: '257705', account_type: "1", amount: "000003415.00", action_date: Date.today, account_name: "POOL CLINQUE", user_ref: "_2055102_PAY USER"},
115
+ { account_number: '05260151306', branch_code: '632005', account_type: "1", amount: "000033876.00", action_date: Date.today, account_name: "L/S MAGALIESKRUIN", user_ref: "_2055101_PAY USER"},
116
+ { account_number: '01411257154', branch_code: '141148', account_type: "1", amount: "000000460.00", action_date: Date.today, account_name: "VIDA COURT", user_ref: "_2055100_PAY USER"},
117
+ { account_number: '62093414242', branch_code: '250655', account_type: "1", amount: "000000560.00", action_date: Date.today, account_name: "VILLA MERZEE", user_ref: "_2055099_PAY USER"},
118
+ { account_number: '62149866222', branch_code: '250655', account_type: "1", amount: "000000694.80", action_date: Date.today, account_name: "VILLA TIMONICE", user_ref: "_2055098_PAY USER"},
119
+ { account_number: '54200045473', branch_code: '260347', account_type: "1", amount: "000008839.20", action_date: Date.today, account_name: "UNICORN SECURITY", user_ref: "_2055097_PAY USER"},
120
+ { account_number: '62101679994', branch_code: '252145', account_type: "1", amount: "000010120.00", action_date: Date.today, account_name: "GLOBAL MISSIONS", user_ref: "_2055096_PAY USER"},
121
+ { account_number: '00221501223', branch_code: '051001', account_type: "1", amount: "000001760.00", action_date: Date.today, account_name: "WIZARDWORX", user_ref: "_2055095_PAY USER"},
122
+ { account_number: '04043978795', branch_code: '632005', account_type: "1", amount: "000001720.00", action_date: Date.today, account_name: "WA PIETERS ASS", user_ref: "_2055094_PAY USER"},
123
+ { account_number: '04048580705', branch_code: '632005', account_type: "1", amount: "000000600.00", action_date: Date.today, account_name: "ZOE ACADEMY", user_ref: "_2055093_PAY USER"},
124
+ { account_number: '00020803907', branch_code: '051001', account_type: "1", amount: "000043320.00", action_date: Date.today, account_name: "ELTRA AFRICA CC", user_ref: "_2055092_PAY USER"},
125
+ { account_number: '00235787396', branch_code: '051001', account_type: "1", amount: "000002545.22", action_date: Date.today, account_name: "LIFESTYLE BOOKS BANDA", user_ref: "_2055091_PAY USER"},
126
+ { account_number: '09083437516', branch_code: '632005', account_type: "1", amount: "000006000.00", action_date: Date.today, account_name: "HUIS OEBOENTOE", user_ref: "_2055090_PAY USER"},
127
+ { account_number: '04070648490', branch_code: '632005', account_type: "1", amount: "000010092.00", action_date: Date.today, account_name: "BLOEM SELF STORAGE", user_ref: "_2055089_PAY USER"},
128
+ { account_number: '01030660109', branch_code: '632005', account_type: "1", amount: "000011176.00", action_date: Date.today, account_name: "HENSTOCK VAN DEN HEEVER", user_ref: "_2055088_PAY USER"},
129
+ { account_number: '01411238753', branch_code: '141148', account_type: "1", amount: "000001085.00", action_date: Date.today, account_name: "ADENHOF", user_ref: "_2055087_PAY USER"},
130
+ { account_number: '00021199418', branch_code: '051001', account_type: "1", amount: "000008140.00", action_date: Date.today, account_name: "KUMON SHEARER", user_ref: "_2055086_PAY USER"},
131
+ { account_number: '60036499560', branch_code: '212217', account_type: "1", amount: "000003600.00", action_date: Date.today, account_name: "MF ACCOUTING BOOKKEEPING SER", user_ref: "_2055085_PAY USER"},
132
+ { account_number: '01028411045', branch_code: '632005', account_type: "1", amount: "000001757.00", action_date: Date.today, account_name: "LIFESTYLE BOOKS BARNARD", user_ref: "_2055084_PAY USER"},
133
+ { account_number: '01627024328', branch_code: '162734', account_type: "1", amount: "000004790.00", action_date: Date.today, account_name: "STORAGE CITY", user_ref: "_2055083_PAY USER"},
134
+ { account_number: '04057772276', branch_code: '632005', account_type: "1", amount: "000001269.85", action_date: Date.today, account_name: "POOL MAGIC", user_ref: "_2055082_PAY USER"},
135
+ { account_number: '01662054092', branch_code: '162734', account_type: "1", amount: "000000600.00", action_date: Date.today, account_name: "CONCERNED EMPLOYERS ASSOCIATI", user_ref: "_2055081_PAY USER"},
136
+ { account_number: '01904176003', branch_code: '190442', account_type: "1", amount: "000003230.00", action_date: Date.today, account_name: "POOL MAGIC ADVISORY", user_ref: "_2055080_PAY USER"},
137
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000149.00", action_date: Date.today, account_name: "RWFL GRAHAMSTOWN", user_ref: "_2055079_PAY USER"},
138
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000829.33", action_date: Date.today, account_name: "RWFL SHARONLEE", user_ref: "_2055078_PAY USER"},
139
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000120.90", action_date: Date.today, account_name: "RWFL TABLEVIEW", user_ref: "_2055077_PAY USER"},
140
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000629.13", action_date: Date.today, account_name: "RWFL OUDTSHOORM", user_ref: "_2055076_PAY USER"},
141
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000332.83", action_date: Date.today, account_name: "RWFL HILTON", user_ref: "_2055075_PAY USER"},
142
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000001018.12", action_date: Date.today, account_name: "RWFL DIE MOOT", user_ref: "_2055074_PAY USER"},
143
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000423.00", action_date: Date.today, account_name: "RWFL MODDERFONTEIN", user_ref: "_2055073_PAY USER"},
144
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000221.02", action_date: Date.today, account_name: "RWFL PRETORIA NORTH", user_ref: "_2055072_PAY USER"},
145
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000126.55", action_date: Date.today, account_name: "RWFL BRAKPAN", user_ref: "_2055071_PAY USER"},
146
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000002787.04", action_date: Date.today, account_name: "RWFL RUSTENBURG", user_ref: "_2055070_PAY USER"},
147
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000314.87", action_date: Date.today, account_name: "RWFL WELTEVREDENPARK AM PM", user_ref: "_2055069_PAY USER"},
148
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000119.00", action_date: Date.today, account_name: "RWFL SANDTON AM PM", user_ref: "_2055068_PAY USER"},
149
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000378.82", action_date: Date.today, account_name: "RWFL ROODEPOORT PM KRUGERS", user_ref: "_2055067_PAY USER"},
150
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000933.64", action_date: Date.today, account_name: "RWFL RANDBURG PM", user_ref: "_2055066_PAY USER"},
151
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000252.05", action_date: Date.today, account_name: "RWFL NORTHCLIFF PM", user_ref: "_2055065_PAY USER"},
152
+ { account_number: '62005080388', branch_code: '990355', account_type: "1", amount: "000000200.00", action_date: Date.today, account_name: "RWFL MILNERTON PM", user_ref: "_2055064_PAY USER"},
153
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000605.15", action_date: Date.today, account_name: "RWFL MIDRAND PM", user_ref: "_2055063_PAY USER"},
154
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000756.14", action_date: Date.today, account_name: "RWFL KEMPTON PARK PM", user_ref: "_2055062_PAY USER"},
155
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000171.12", action_date: Date.today, account_name: "RWFL GARSFONTEIN PM", user_ref: "_2055061_PAY USER"},
156
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000780.84", action_date: Date.today, account_name: "RWFL GERMISTON PM", user_ref: "_2055060_PAY USER"},
157
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000193.45", action_date: Date.today, account_name: "RWFL FISH HOEK PM", user_ref: "_2055059_PAY USER"},
158
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000126.55", action_date: Date.today, account_name: "RWFL FOURWAYS PM", user_ref: "_2055058_PAY USER"},
159
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000001210.19", action_date: Date.today, account_name: "RWFL EAST LONDON AM", user_ref: "_2055057_PAY USER"},
160
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000096.45", action_date: Date.today, account_name: "RWFL ELARDUS PARK PM", user_ref: "_2055056_PAY USER"},
161
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000306.07", action_date: Date.today, account_name: "RWFL EDENVALE PM", user_ref: "_2055055_PAY USER"},
162
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000101.82", action_date: Date.today, account_name: "RWFL CENTURION PM THE WILL", user_ref: "_2055054_PAY USER"},
163
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000071.45", action_date: Date.today, account_name: "RWFL BELLVILLE AM", user_ref: "_2055053_PAY USER"},
164
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000252.33", action_date: Date.today, account_name: "RWFL BRYANSTON PM RANDBURG", user_ref: "_2055052_PAY USER"},
165
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000175.30", action_date: Date.today, account_name: "RWFL BERGVLIET PM", user_ref: "_2055051_PAY USER"},
166
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000327.00", action_date: Date.today, account_name: "RWFL BEDFORDVIEW PM EDENVA", user_ref: "_2055050_PAY USER"},
167
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000126.70", action_date: Date.today, account_name: "RWFL BRYANSTON AM SUNNINGH", user_ref: "_2055049_PAY USER"},
168
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000439.77", action_date: Date.today, account_name: "RWFL BROOKLYN PM", user_ref: "_2055048_PAY USER"},
169
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000001374.11", action_date: Date.today, account_name: "RWFL BOKSBURG PM/BEDFRODVIE", user_ref: "_2055047_PAY USER"},
170
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000681.08", action_date: Date.today, account_name: "RWFL AMANZINTOTI/BEREA", user_ref: "_2055046_PAY USER"},
171
+ { account_number: '62005080388', branch_code: '250355', account_type: "1", amount: "000000861.27", action_date: Date.today, account_name: "RWFL ALBERTON/GLENVISTA", user_ref: "_2055045_PAY USER"},
172
+ { account_number: '01128016575', branch_code: '112805', account_type: "1", amount: "000001900.00", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055044_PAY USER"},
173
+ { account_number: '01128016575', branch_code: '112805', account_type: "1", amount: "000000860.00", action_date: Date.today, account_name: "THOMSON ACCOUNTANTS", user_ref: "_2055043_PAY USER"},
174
+ { account_number: '01983141100', branch_code: '198341', account_type: "1", amount: "000032766.97", action_date: Date.today, account_name: "DUNMAR REACTION SERVICES", user_ref: "_2055042_PAY USER"},
175
+ { account_number: '04061717092', branch_code: '632005', account_type: "1", amount: "000049445.00", action_date: Date.today, account_name: "TEXTILE SECURITY SERVICES", user_ref: "_2055041_PAY USER"},
176
+ { account_number: '52104226149', branch_code: '260449', account_type: "1", amount: "000000300.00", action_date: Date.today, account_name: "DR SPIES VENNOTE", user_ref: "_2055040_PAY USER"},
177
+ { account_number: '62096195344', branch_code: '260349', account_type: "1", amount: "000000755.00", action_date: Date.today, account_name: "TOP COUNCILS LEGAL CONSUNTANC", user_ref: "_2055039_PAY USER"},
178
+ { account_number: '02140264523', branch_code: '632005', account_type: "1", amount: "000001000.00", action_date: Date.today, account_name: "SIGMAFIN", user_ref: "_2055038_PAY USER"},
179
+ { account_number: '02840000365', branch_code: '632005', account_type: "1", amount: "000000830.00", action_date: Date.today, account_name: "UJ GYM", user_ref: "_2055037_PAY USER"},
180
+ { account_number: '04055281954', branch_code: '632005', account_type: "1", amount: "000001930.77", action_date: Date.today, account_name: "CENTRE SHELF DEVELOPERS T/A E", user_ref: "_2055036_PAY USER"},
181
+ { account_number: '62062107711', branch_code: '261251', account_type: "1", amount: "000000399.00", action_date: Date.today, account_name: "MOTO GUIDE CC", user_ref: "_2055035_PAY USER"},
182
+ { account_number: '00078262496', branch_code: '026509', account_type: "1", amount: "000000200.00", action_date: Date.today, account_name: "IMPACT THE NATION", user_ref: "_2055034_PAY USER"},
183
+ { account_number: '04070619188', branch_code: '632005', account_type: "1", amount: "000048729.90", action_date: Date.today, account_name: "HENTIQ 2227 PTY LTD", user_ref: "_2055033_PAY USER"},
184
+ { account_number: '62115276603', branch_code: '261251', account_type: "1", amount: "000049935.00", action_date: Date.today, account_name: "EVEREST STRATEGIC MANAGERS PT", user_ref: "_2055032_PAY USER"},
185
+ { account_number: '04057512949', branch_code: '632005', account_type: "1", amount: "000000566.00", action_date: Date.today, account_name: "DIGITAL IP SOLUTIONS PTY LTD", user_ref: "_2055031_PAY USER"},
186
+ { account_number: '00021158932', branch_code: '015641', account_type: "1", amount: "000013488.00", action_date: Date.today, account_name: "E MALAN ASS CC", user_ref: "_2055030_PAY USER"},
187
+ { account_number: '00030235642', branch_code: '051001', account_type: "1", amount: "000002562.10", action_date: Date.today, account_name: "METHODIST CHURCH", user_ref: "_2055029_PAY USER"},
188
+ { account_number: '00221015566', branch_code: '018005', account_type: "1", amount: "000049161.93", action_date: Date.today, account_name: "HEALING MINISTRIES TRUST", user_ref: "_2055028_PAY USER"},
189
+ { account_number: '00200589458', branch_code: '006305', account_type: "1", amount: "000000473.00", action_date: Date.today, account_name: "WILLEMS VD WESTHUIZEN", user_ref: "_2055027_PAY USER"},
190
+ { account_number: '62032469836', branch_code: '252045', account_type: "1", amount: "000003142.50", action_date: Date.today, account_name: "COMPACT ACCOUNTING", user_ref: "_2055026_PAY USER"},
191
+ { account_number: '01651343144', branch_code: '165145', account_type: "1", amount: "000000865.03", action_date: Date.today, account_name: "BOSHOFF SMUTS ING", user_ref: "_2055025_PAY USER"}
192
+ ]
193
+ }]
194
+ }
195
+ })
196
+ end
197
+ end
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
metadata ADDED
@@ -0,0 +1,223 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bankserv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jeffrey van Aswegen
9
+ - Douglas Anderson
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-04-04 00:00:00.000000000Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ requirement: &70268915866040 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *70268915866040
26
+ - !ruby/object:Gem::Dependency
27
+ name: activerecord
28
+ requirement: &70268915865460 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *70268915865460
37
+ - !ruby/object:Gem::Dependency
38
+ name: i18n
39
+ requirement: &70268915864700 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ type: :runtime
46
+ prerelease: false
47
+ version_requirements: *70268915864700
48
+ - !ruby/object:Gem::Dependency
49
+ name: absa-h2h
50
+ requirement: &70268915864080 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: 0.0.11
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: *70268915864080
59
+ - !ruby/object:Gem::Dependency
60
+ name: absa-esd
61
+ requirement: &70268915863560 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ~>
65
+ - !ruby/object:Gem::Version
66
+ version: 0.0.1
67
+ type: :runtime
68
+ prerelease: false
69
+ version_requirements: *70268915863560
70
+ - !ruby/object:Gem::Dependency
71
+ name: combustion
72
+ requirement: &70268915862940 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 0.3.1
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: *70268915862940
81
+ description: ! "This engine allows users to inject requests into a queue to be processed.
82
+ \n \n The queue handles bank account validations, credit payments,
83
+ debit orders\n and collecting bank statements. "
84
+ email:
85
+ - jeffmess@gmail.com
86
+ - i.am.douglas.anderson@gmail.com
87
+ executables: []
88
+ extensions: []
89
+ extra_rdoc_files: []
90
+ files:
91
+ - .gitignore
92
+ - .rvmrc
93
+ - Gemfile
94
+ - Rakefile
95
+ - bankserv.gemspec
96
+ - config.ru
97
+ - lib/bankserv.rb
98
+ - lib/bankserv/account_holder_verification.rb
99
+ - lib/bankserv/bank_account.rb
100
+ - lib/bankserv/configuration.rb
101
+ - lib/bankserv/credit.rb
102
+ - lib/bankserv/debit.rb
103
+ - lib/bankserv/eft.rb
104
+ - lib/bankserv/engine.rb
105
+ - lib/bankserv/engine/engine_configuration.rb
106
+ - lib/bankserv/engine/engine_process.rb
107
+ - lib/bankserv/request.rb
108
+ - lib/bankserv/transaction.rb
109
+ - lib/bankserv/transmission/document.rb
110
+ - lib/bankserv/transmission/input_document.rb
111
+ - lib/bankserv/transmission/output_document.rb
112
+ - lib/bankserv/transmission/record.rb
113
+ - lib/bankserv/transmission/reply_document.rb
114
+ - lib/bankserv/transmission/set.rb
115
+ - lib/bankserv/transmission/set/account_holder_verification.rb
116
+ - lib/bankserv/transmission/set/account_holder_verification_output.rb
117
+ - lib/bankserv/transmission/set/credit.rb
118
+ - lib/bankserv/transmission/set/debit.rb
119
+ - lib/bankserv/transmission/set/document.rb
120
+ - lib/bankserv/transmission/set/eft.rb
121
+ - lib/bankserv/transmission/set/eft_output.rb
122
+ - lib/bankserv/transmission/set/eft_redirect.rb
123
+ - lib/bankserv/transmission/set/eft_unpaid.rb
124
+ - lib/bankserv/transmission/set/reply.rb
125
+ - lib/bankserv/transmission/statement.rb
126
+ - lib/bankserv/version.rb
127
+ - lib/config/ahv.yml
128
+ - lib/core_extensions.rb
129
+ - lib/generators/active_record/bankserv_generator.rb
130
+ - lib/generators/active_record/templates/migration.rb
131
+ - spec/examples/ahv_input_file.txt
132
+ - spec/examples/ahv_output_file.txt
133
+ - spec/examples/credit_eft_input.txt
134
+ - spec/examples/debit_eft_input_file.txt
135
+ - spec/examples/eft_input_with_2_sets.txt
136
+ - spec/examples/eft_output_file.txt
137
+ - spec/examples/host2host/tmp.log
138
+ - spec/examples/reply/rejected_transmission.txt
139
+ - spec/examples/reply/reply_file.txt
140
+ - spec/examples/statement4_unpacked.dat
141
+ - spec/examples/tmp/OUTPUT0412153500.txt
142
+ - spec/examples/tmp/REPLY0412153000.txt
143
+ - spec/factories.rb
144
+ - spec/internal/config/database.yml.sample
145
+ - spec/internal/config/routes.rb
146
+ - spec/internal/db/schema.rb
147
+ - spec/internal/log/.gitignore
148
+ - spec/internal/public/favicon.ico
149
+ - spec/lib/bankserv/account_holder_verification_spec.rb
150
+ - spec/lib/bankserv/configuration_spec.rb
151
+ - spec/lib/bankserv/core_ext_spec.rb
152
+ - spec/lib/bankserv/credit_spec.rb
153
+ - spec/lib/bankserv/debit_spec.rb
154
+ - spec/lib/bankserv/engine/engine_spec.rb
155
+ - spec/lib/bankserv/transaction_spec.rb
156
+ - spec/lib/bankserv/transmission/input_document_spec.rb
157
+ - spec/lib/bankserv/transmission/output_document_spec.rb
158
+ - spec/lib/bankserv/transmission/reply_document_spec.rb
159
+ - spec/lib/bankserv/transmission/set/account_holder_verification_spec.rb
160
+ - spec/lib/bankserv/transmission/set/credit_spec.rb
161
+ - spec/lib/bankserv/transmission/set/debit_spec.rb
162
+ - spec/lib/bankserv/transmission/statement_spec.rb
163
+ - spec/spec_helper.rb
164
+ - spec/support/helpers.rb
165
+ homepage: ''
166
+ licenses: []
167
+ post_install_message:
168
+ rdoc_options: []
169
+ require_paths:
170
+ - lib
171
+ required_ruby_version: !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubyforge_project: bankserv
185
+ rubygems_version: 1.8.6
186
+ signing_key:
187
+ specification_version: 3
188
+ summary: A rails 3 engine wrapped around the Absa Host 2 Host gem.
189
+ test_files:
190
+ - spec/examples/ahv_input_file.txt
191
+ - spec/examples/ahv_output_file.txt
192
+ - spec/examples/credit_eft_input.txt
193
+ - spec/examples/debit_eft_input_file.txt
194
+ - spec/examples/eft_input_with_2_sets.txt
195
+ - spec/examples/eft_output_file.txt
196
+ - spec/examples/host2host/tmp.log
197
+ - spec/examples/reply/rejected_transmission.txt
198
+ - spec/examples/reply/reply_file.txt
199
+ - spec/examples/statement4_unpacked.dat
200
+ - spec/examples/tmp/OUTPUT0412153500.txt
201
+ - spec/examples/tmp/REPLY0412153000.txt
202
+ - spec/factories.rb
203
+ - spec/internal/config/database.yml.sample
204
+ - spec/internal/config/routes.rb
205
+ - spec/internal/db/schema.rb
206
+ - spec/internal/log/.gitignore
207
+ - spec/internal/public/favicon.ico
208
+ - spec/lib/bankserv/account_holder_verification_spec.rb
209
+ - spec/lib/bankserv/configuration_spec.rb
210
+ - spec/lib/bankserv/core_ext_spec.rb
211
+ - spec/lib/bankserv/credit_spec.rb
212
+ - spec/lib/bankserv/debit_spec.rb
213
+ - spec/lib/bankserv/engine/engine_spec.rb
214
+ - spec/lib/bankserv/transaction_spec.rb
215
+ - spec/lib/bankserv/transmission/input_document_spec.rb
216
+ - spec/lib/bankserv/transmission/output_document_spec.rb
217
+ - spec/lib/bankserv/transmission/reply_document_spec.rb
218
+ - spec/lib/bankserv/transmission/set/account_holder_verification_spec.rb
219
+ - spec/lib/bankserv/transmission/set/credit_spec.rb
220
+ - spec/lib/bankserv/transmission/set/debit_spec.rb
221
+ - spec/lib/bankserv/transmission/statement_spec.rb
222
+ - spec/spec_helper.rb
223
+ - spec/support/helpers.rb