ruby-hotfile 0.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.
- checksums.yaml +7 -0
- data/lib/hotfile/date.rb +25 -0
- data/lib/hotfile/integer.rb +28 -0
- data/lib/hotfile/parser.rb +57 -0
- data/lib/hotfile/record/BAR64.rb +44 -0
- data/lib/hotfile/record/BAR65.rb +29 -0
- data/lib/hotfile/record/BAR66.rb +25 -0
- data/lib/hotfile/record/BAR67.rb +28 -0
- data/lib/hotfile/record/BCC82.rb +30 -0
- data/lib/hotfile/record/BCH02.rb +31 -0
- data/lib/hotfile/record/BCT95.rb +39 -0
- data/lib/hotfile/record/BCX83.rb +30 -0
- data/lib/hotfile/record/BFH01.rb +37 -0
- data/lib/hotfile/record/BFT99.rb +37 -0
- data/lib/hotfile/record/BKF81.rb +25 -0
- data/lib/hotfile/record/BKI61.rb +36 -0
- data/lib/hotfile/record/BKI62.rb +44 -0
- data/lib/hotfile/record/BKI63.rb +69 -0
- data/lib/hotfile/record/BKP84.rb +48 -0
- data/lib/hotfile/record/BKS24.rb +43 -0
- data/lib/hotfile/record/BKS30.rb +43 -0
- data/lib/hotfile/record/BKS31.rb +68 -0
- data/lib/hotfile/record/BKS39.rb +45 -0
- data/lib/hotfile/record/BKS42.rb +38 -0
- data/lib/hotfile/record/BKS45.rb +30 -0
- data/lib/hotfile/record/BKS46.rb +33 -0
- data/lib/hotfile/record/BKS47.rb +42 -0
- data/lib/hotfile/record/BKT06.rb +48 -0
- data/lib/hotfile/record/BOH03.rb +29 -0
- data/lib/hotfile/record/BOT93.rb +40 -0
- data/lib/hotfile/record/BOT94.rb +37 -0
- data/lib/hotfile/record/record.rb +16 -0
- data/lib/hotfile/record.rb +35 -0
- data/lib/hotfile/string.rb +18 -0
- data/lib/hotfile/transaction.rb +67 -0
- data/lib/hotfile.rb +37 -0
- data/lib/ruby-hotfile.rb +3 -0
- metadata +79 -0
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-hotfile
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ferry Landzaat
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-08-29 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Parser for IATA HOT files (accounting/sales data) as described in IATA
|
14
|
+
BSP DISH.
|
15
|
+
email:
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- lib/hotfile.rb
|
21
|
+
- lib/hotfile/date.rb
|
22
|
+
- lib/hotfile/integer.rb
|
23
|
+
- lib/hotfile/parser.rb
|
24
|
+
- lib/hotfile/record.rb
|
25
|
+
- lib/hotfile/record/BAR64.rb
|
26
|
+
- lib/hotfile/record/BAR65.rb
|
27
|
+
- lib/hotfile/record/BAR66.rb
|
28
|
+
- lib/hotfile/record/BAR67.rb
|
29
|
+
- lib/hotfile/record/BCC82.rb
|
30
|
+
- lib/hotfile/record/BCH02.rb
|
31
|
+
- lib/hotfile/record/BCT95.rb
|
32
|
+
- lib/hotfile/record/BCX83.rb
|
33
|
+
- lib/hotfile/record/BFH01.rb
|
34
|
+
- lib/hotfile/record/BFT99.rb
|
35
|
+
- lib/hotfile/record/BKF81.rb
|
36
|
+
- lib/hotfile/record/BKI61.rb
|
37
|
+
- lib/hotfile/record/BKI62.rb
|
38
|
+
- lib/hotfile/record/BKI63.rb
|
39
|
+
- lib/hotfile/record/BKP84.rb
|
40
|
+
- lib/hotfile/record/BKS24.rb
|
41
|
+
- lib/hotfile/record/BKS30.rb
|
42
|
+
- lib/hotfile/record/BKS31.rb
|
43
|
+
- lib/hotfile/record/BKS39.rb
|
44
|
+
- lib/hotfile/record/BKS42.rb
|
45
|
+
- lib/hotfile/record/BKS45.rb
|
46
|
+
- lib/hotfile/record/BKS46.rb
|
47
|
+
- lib/hotfile/record/BKS47.rb
|
48
|
+
- lib/hotfile/record/BKT06.rb
|
49
|
+
- lib/hotfile/record/BOH03.rb
|
50
|
+
- lib/hotfile/record/BOT93.rb
|
51
|
+
- lib/hotfile/record/BOT94.rb
|
52
|
+
- lib/hotfile/record/record.rb
|
53
|
+
- lib/hotfile/string.rb
|
54
|
+
- lib/hotfile/transaction.rb
|
55
|
+
- lib/ruby-hotfile.rb
|
56
|
+
homepage: https://github.com/fjl82/ruby-hotfile
|
57
|
+
licenses:
|
58
|
+
- MIT
|
59
|
+
metadata: {}
|
60
|
+
post_install_message:
|
61
|
+
rdoc_options: []
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.0.0
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
requirements: []
|
75
|
+
rubygems_version: 3.3.5
|
76
|
+
signing_key:
|
77
|
+
specification_version: 4
|
78
|
+
summary: Ruby HOTfile parser
|
79
|
+
test_files: []
|