mt940_parser 1.0.0 → 1.0.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.
- data/VERSION.yml +1 -1
- data/lib/mt940.rb +2 -0
- data/mt940_parser.gemspec +87 -0
- metadata +4 -3
data/VERSION.yml
CHANGED
data/lib/mt940.rb
CHANGED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{mt940_parser}
|
|
8
|
+
s.version = "1.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Thies C. Arntzen", "Phillip Oertel"]
|
|
12
|
+
s.date = %q{2011-02-28}
|
|
13
|
+
s.email = %q{developers@betterplace.org}
|
|
14
|
+
s.extra_rdoc_files = [
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"README.rdoc"
|
|
17
|
+
]
|
|
18
|
+
s.files = [
|
|
19
|
+
".document",
|
|
20
|
+
".specification",
|
|
21
|
+
"Gemfile",
|
|
22
|
+
"Gemfile.lock",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"README.rdoc",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION.yml",
|
|
27
|
+
"docs/0E0Y00DNY.pdf",
|
|
28
|
+
"docs/FinTS_4.0_Formals.pdf",
|
|
29
|
+
"docs/FinTS_4.0_Messages_Finanzdatenformate.pdf",
|
|
30
|
+
"docs/MT940_Deutschland_Structure2002.pdf",
|
|
31
|
+
"docs/SEPA_20MT940__Schnittstellenbeschreibung.pdf",
|
|
32
|
+
"docs/mt940.pdf",
|
|
33
|
+
"docs/swift_mt940_942.pdf",
|
|
34
|
+
"docs/uebersicht_der_geschaeftsvorfallcodes_und_buchungs_textschluessel.pdf",
|
|
35
|
+
"lib/mt940.rb",
|
|
36
|
+
"lib/mt940/customer_statement_message.rb",
|
|
37
|
+
"mt940_parser.gemspec",
|
|
38
|
+
"test/fixtures/currency_in_25.txt",
|
|
39
|
+
"test/fixtures/currency_in_25.yml",
|
|
40
|
+
"test/fixtures/empty_86.txt",
|
|
41
|
+
"test/fixtures/empty_86.yml",
|
|
42
|
+
"test/fixtures/empty_line.txt",
|
|
43
|
+
"test/fixtures/empty_line.yml",
|
|
44
|
+
"test/fixtures/missing_crlf_at_end.txt",
|
|
45
|
+
"test/fixtures/missing_crlf_at_end.yml",
|
|
46
|
+
"test/fixtures/sepa_mt9401.txt",
|
|
47
|
+
"test/fixtures/sepa_mt9401.yml",
|
|
48
|
+
"test/fixtures/sepa_snippet.txt",
|
|
49
|
+
"test/fixtures/sepa_snippet_broken.txt",
|
|
50
|
+
"test/helper.rb",
|
|
51
|
+
"test/test_customer_statement_message.rb",
|
|
52
|
+
"test/test_mt940.rb"
|
|
53
|
+
]
|
|
54
|
+
s.homepage = %q{http://github.com/betterplace/mt940_parser}
|
|
55
|
+
s.licenses = ["MIT"]
|
|
56
|
+
s.require_paths = ["lib"]
|
|
57
|
+
s.rubygems_version = %q{1.3.7}
|
|
58
|
+
s.summary = %q{MT940 parses account statements in the SWIFT MT940 format.}
|
|
59
|
+
s.test_files = [
|
|
60
|
+
"test/helper.rb",
|
|
61
|
+
"test/test_customer_statement_message.rb",
|
|
62
|
+
"test/test_mt940.rb"
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
if s.respond_to? :specification_version then
|
|
66
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
67
|
+
s.specification_version = 3
|
|
68
|
+
|
|
69
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
70
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
71
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
72
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
73
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
74
|
+
else
|
|
75
|
+
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
76
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
77
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
78
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
79
|
+
end
|
|
80
|
+
else
|
|
81
|
+
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
|
82
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
83
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
84
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mt940_parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.0.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Thies C. Arntzen
|
|
@@ -109,6 +109,7 @@ files:
|
|
|
109
109
|
- docs/uebersicht_der_geschaeftsvorfallcodes_und_buchungs_textschluessel.pdf
|
|
110
110
|
- lib/mt940.rb
|
|
111
111
|
- lib/mt940/customer_statement_message.rb
|
|
112
|
+
- mt940_parser.gemspec
|
|
112
113
|
- test/fixtures/currency_in_25.txt
|
|
113
114
|
- test/fixtures/currency_in_25.yml
|
|
114
115
|
- test/fixtures/empty_86.txt
|