ofx_for_ruby 0.1.1

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.
Files changed (74) hide show
  1. data/.externalToolBuilders/Rebuild parsers.launch +10 -0
  2. data/.gitignore +9 -0
  3. data/.loadpath +5 -0
  4. data/.project +27 -0
  5. data/COPYING +674 -0
  6. data/Gemfile +2 -0
  7. data/README +47 -0
  8. data/RELEASE_NOTES +45 -0
  9. data/Rakefile +63 -0
  10. data/lib/ofx.rb +60 -0
  11. data/lib/ofx/1.0.2/banking_message_set.rb +261 -0
  12. data/lib/ofx/1.0.2/credit_card_statement_message_set.rb +269 -0
  13. data/lib/ofx/1.0.2/document.rb +34 -0
  14. data/lib/ofx/1.0.2/email_message_set.rb +34 -0
  15. data/lib/ofx/1.0.2/financial_institution_profile_message_set.rb +155 -0
  16. data/lib/ofx/1.0.2/header.rb +48 -0
  17. data/lib/ofx/1.0.2/interbank_funds_transfer_message_set.rb +30 -0
  18. data/lib/ofx/1.0.2/investment_security_list_message_set.rb +30 -0
  19. data/lib/ofx/1.0.2/investment_statement_message_set.rb +30 -0
  20. data/lib/ofx/1.0.2/lexer.rb +135 -0
  21. data/lib/ofx/1.0.2/message_set.rb +165 -0
  22. data/lib/ofx/1.0.2/ofx_102.racc +90 -0
  23. data/lib/ofx/1.0.2/ofx_102.rex +65 -0
  24. data/lib/ofx/1.0.2/parser.rb +215 -0
  25. data/lib/ofx/1.0.2/payment_message_set.rb +30 -0
  26. data/lib/ofx/1.0.2/serializer.rb +114 -0
  27. data/lib/ofx/1.0.2/signon_message_set.rb +121 -0
  28. data/lib/ofx/1.0.2/signup_message_set.rb +186 -0
  29. data/lib/ofx/1.0.2/statements.rb +54 -0
  30. data/lib/ofx/1.0.2/status.rb +30 -0
  31. data/lib/ofx/1.0.2/wire_funds_transfer_message_set.rb +30 -0
  32. data/lib/ofx/banking_message_set.rb +125 -0
  33. data/lib/ofx/credit_card_statement_message_set.rb +104 -0
  34. data/lib/ofx/document.rb +30 -0
  35. data/lib/ofx/email_message_set.rb +42 -0
  36. data/lib/ofx/file_unique_identifier.rb +28 -0
  37. data/lib/ofx/financial_client.rb +76 -0
  38. data/lib/ofx/financial_institution.rb +83 -0
  39. data/lib/ofx/financial_institution_profile_message_set.rb +67 -0
  40. data/lib/ofx/header.rb +115 -0
  41. data/lib/ofx/http/cacert.pem +3509 -0
  42. data/lib/ofx/http/ofx_http_client.rb +84 -0
  43. data/lib/ofx/interbank_funds_transfer_message_set.rb +33 -0
  44. data/lib/ofx/investment_security_list_message_set.rb +33 -0
  45. data/lib/ofx/investment_statement_message_set.rb +33 -0
  46. data/lib/ofx/message_set.rb +78 -0
  47. data/lib/ofx/payment_message_set.rb +33 -0
  48. data/lib/ofx/serializer.rb +39 -0
  49. data/lib/ofx/signon_message_set.rb +141 -0
  50. data/lib/ofx/signup_message_set.rb +84 -0
  51. data/lib/ofx/statements.rb +49 -0
  52. data/lib/ofx/status.rb +100 -0
  53. data/lib/ofx/transaction_unique_identifier.rb +28 -0
  54. data/lib/ofx/version.rb +82 -0
  55. data/lib/ofx/wire_funds_transfer_message_set.rb +33 -0
  56. data/ofx_for_ruby.gemspec +25 -0
  57. data/planning/OFX Specification completion.ods +0 -0
  58. data/test/capital_one/capital_one_helper.rb +77 -0
  59. data/test/capital_one/fixtures/README +10 -0
  60. data/test/capital_one/fixtures/fipid-5599.xml +98 -0
  61. data/test/capital_one/test_banking_statement.rb +108 -0
  62. data/test/capital_one/test_financial_institution_profile.rb +295 -0
  63. data/test/capital_one/test_ofx_http_client.rb +72 -0
  64. data/test/capital_one/test_signup_account_information.rb +100 -0
  65. data/test/citi/citi_helper.rb +77 -0
  66. data/test/citi/fixtures/README +9 -0
  67. data/test/citi/fixtures/fipid-6642.xml +98 -0
  68. data/test/citi/test_credit_card_statement.rb +159 -0
  69. data/test/citi/test_financial_institution_profile.rb +231 -0
  70. data/test/citi/test_ofx_http_client.rb +71 -0
  71. data/test/citi/test_signup_account_information.rb +85 -0
  72. data/test/test_helper.rb +4 -0
  73. data/test/test_ofx_version.rb +141 -0
  74. metadata +210 -0
metadata ADDED
@@ -0,0 +1,210 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ofx_for_ruby
3
+ version: !ruby/object:Gem::Version
4
+ hash: 25
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 1
10
+ version: 0.1.1
11
+ platform: ruby
12
+ authors:
13
+ - Chris Guidry
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-01-02 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ hash: 3
28
+ segments:
29
+ - 0
30
+ version: "0"
31
+ type: :runtime
32
+ name: activesupport
33
+ prerelease: false
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ requirement: &id002 !ruby/object:Gem::Requirement
37
+ none: false
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ hash: 3
42
+ segments:
43
+ - 0
44
+ version: "0"
45
+ type: :development
46
+ name: racc
47
+ prerelease: false
48
+ version_requirements: *id002
49
+ - !ruby/object:Gem::Dependency
50
+ requirement: &id003 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ hash: 3
56
+ segments:
57
+ - 0
58
+ version: "0"
59
+ type: :development
60
+ name: rex
61
+ prerelease: false
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ requirement: &id004 !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ hash: 3
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ type: :development
74
+ name: rcov
75
+ prerelease: false
76
+ version_requirements: *id004
77
+ description: OFX for Ruby is a pure Ruby implementation of Open Financial Exchange specifications (1.0.2 through 2.1.1) for building both financial clients and servers, providing parsers/serializers for each version, and a uniform object model across all versions.
78
+ email:
79
+ - chrisguidry@gmail.com
80
+ executables: []
81
+
82
+ extensions: []
83
+
84
+ extra_rdoc_files: []
85
+
86
+ files:
87
+ - .externalToolBuilders/Rebuild parsers.launch
88
+ - .gitignore
89
+ - .loadpath
90
+ - .project
91
+ - COPYING
92
+ - Gemfile
93
+ - README
94
+ - RELEASE_NOTES
95
+ - Rakefile
96
+ - lib/ofx.rb
97
+ - lib/ofx/1.0.2/banking_message_set.rb
98
+ - lib/ofx/1.0.2/credit_card_statement_message_set.rb
99
+ - lib/ofx/1.0.2/document.rb
100
+ - lib/ofx/1.0.2/email_message_set.rb
101
+ - lib/ofx/1.0.2/financial_institution_profile_message_set.rb
102
+ - lib/ofx/1.0.2/header.rb
103
+ - lib/ofx/1.0.2/interbank_funds_transfer_message_set.rb
104
+ - lib/ofx/1.0.2/investment_security_list_message_set.rb
105
+ - lib/ofx/1.0.2/investment_statement_message_set.rb
106
+ - lib/ofx/1.0.2/lexer.rb
107
+ - lib/ofx/1.0.2/message_set.rb
108
+ - lib/ofx/1.0.2/ofx_102.racc
109
+ - lib/ofx/1.0.2/ofx_102.rex
110
+ - lib/ofx/1.0.2/parser.rb
111
+ - lib/ofx/1.0.2/payment_message_set.rb
112
+ - lib/ofx/1.0.2/serializer.rb
113
+ - lib/ofx/1.0.2/signon_message_set.rb
114
+ - lib/ofx/1.0.2/signup_message_set.rb
115
+ - lib/ofx/1.0.2/statements.rb
116
+ - lib/ofx/1.0.2/status.rb
117
+ - lib/ofx/1.0.2/wire_funds_transfer_message_set.rb
118
+ - lib/ofx/banking_message_set.rb
119
+ - lib/ofx/credit_card_statement_message_set.rb
120
+ - lib/ofx/document.rb
121
+ - lib/ofx/email_message_set.rb
122
+ - lib/ofx/file_unique_identifier.rb
123
+ - lib/ofx/financial_client.rb
124
+ - lib/ofx/financial_institution.rb
125
+ - lib/ofx/financial_institution_profile_message_set.rb
126
+ - lib/ofx/header.rb
127
+ - lib/ofx/http/cacert.pem
128
+ - lib/ofx/http/ofx_http_client.rb
129
+ - lib/ofx/interbank_funds_transfer_message_set.rb
130
+ - lib/ofx/investment_security_list_message_set.rb
131
+ - lib/ofx/investment_statement_message_set.rb
132
+ - lib/ofx/message_set.rb
133
+ - lib/ofx/payment_message_set.rb
134
+ - lib/ofx/serializer.rb
135
+ - lib/ofx/signon_message_set.rb
136
+ - lib/ofx/signup_message_set.rb
137
+ - lib/ofx/statements.rb
138
+ - lib/ofx/status.rb
139
+ - lib/ofx/transaction_unique_identifier.rb
140
+ - lib/ofx/version.rb
141
+ - lib/ofx/wire_funds_transfer_message_set.rb
142
+ - ofx_for_ruby.gemspec
143
+ - planning/OFX Specification completion.ods
144
+ - test/capital_one/capital_one_helper.rb
145
+ - test/capital_one/fixtures/README
146
+ - test/capital_one/fixtures/fipid-5599.xml
147
+ - test/capital_one/test_banking_statement.rb
148
+ - test/capital_one/test_financial_institution_profile.rb
149
+ - test/capital_one/test_ofx_http_client.rb
150
+ - test/capital_one/test_signup_account_information.rb
151
+ - test/citi/citi_helper.rb
152
+ - test/citi/fixtures/README
153
+ - test/citi/fixtures/fipid-6642.xml
154
+ - test/citi/test_credit_card_statement.rb
155
+ - test/citi/test_financial_institution_profile.rb
156
+ - test/citi/test_ofx_http_client.rb
157
+ - test/citi/test_signup_account_information.rb
158
+ - test/test_helper.rb
159
+ - test/test_ofx_version.rb
160
+ has_rdoc: true
161
+ homepage: http://github.com/baconpat/ofx_for_ruby
162
+ licenses: []
163
+
164
+ post_install_message:
165
+ rdoc_options: []
166
+
167
+ require_paths:
168
+ - lib
169
+ required_ruby_version: !ruby/object:Gem::Requirement
170
+ none: false
171
+ requirements:
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ hash: 3
175
+ segments:
176
+ - 0
177
+ version: "0"
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ none: false
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ hash: 3
184
+ segments:
185
+ - 0
186
+ version: "0"
187
+ requirements: []
188
+
189
+ rubyforge_project:
190
+ rubygems_version: 1.3.7
191
+ signing_key:
192
+ specification_version: 3
193
+ summary: Pure Ruby implementation of Open Financial Exchange specifications
194
+ test_files:
195
+ - test/capital_one/capital_one_helper.rb
196
+ - test/capital_one/fixtures/README
197
+ - test/capital_one/fixtures/fipid-5599.xml
198
+ - test/capital_one/test_banking_statement.rb
199
+ - test/capital_one/test_financial_institution_profile.rb
200
+ - test/capital_one/test_ofx_http_client.rb
201
+ - test/capital_one/test_signup_account_information.rb
202
+ - test/citi/citi_helper.rb
203
+ - test/citi/fixtures/README
204
+ - test/citi/fixtures/fipid-6642.xml
205
+ - test/citi/test_credit_card_statement.rb
206
+ - test/citi/test_financial_institution_profile.rb
207
+ - test/citi/test_ofx_http_client.rb
208
+ - test/citi/test_signup_account_information.rb
209
+ - test/test_helper.rb
210
+ - test/test_ofx_version.rb