activewarehouse-etl-sgonyea 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +9 -0
- data/0.9-UPGRADE +6 -0
- data/CHANGELOG +236 -0
- data/Gemfile +4 -0
- data/HOW_TO_RELEASE +13 -0
- data/LICENSE +7 -0
- data/README.textile +111 -0
- data/Rakefile +103 -0
- data/TODO +28 -0
- data/active_support_logger.patch +78 -0
- data/activewarehouse-etl.gemspec +36 -0
- data/bin/etl +28 -0
- data/bin/etl.cmd +8 -0
- data/examples/database.example.yml +16 -0
- data/lib/etl.rb +97 -0
- data/lib/etl/batch.rb +2 -0
- data/lib/etl/batch/batch.rb +111 -0
- data/lib/etl/batch/directives.rb +65 -0
- data/lib/etl/builder.rb +2 -0
- data/lib/etl/builder/date_dimension_builder.rb +96 -0
- data/lib/etl/builder/time_dimension_builder.rb +31 -0
- data/lib/etl/commands/etl.rb +89 -0
- data/lib/etl/control.rb +3 -0
- data/lib/etl/control/control.rb +405 -0
- data/lib/etl/control/destination.rb +438 -0
- data/lib/etl/control/destination/csv_destination.rb +113 -0
- data/lib/etl/control/destination/database_destination.rb +97 -0
- data/lib/etl/control/destination/excel_destination.rb +91 -0
- data/lib/etl/control/destination/file_destination.rb +126 -0
- data/lib/etl/control/destination/insert_update_database_destination.rb +136 -0
- data/lib/etl/control/destination/update_database_destination.rb +109 -0
- data/lib/etl/control/destination/yaml_destination.rb +74 -0
- data/lib/etl/control/source.rb +132 -0
- data/lib/etl/control/source/database_source.rb +224 -0
- data/lib/etl/control/source/enumerable_source.rb +11 -0
- data/lib/etl/control/source/file_source.rb +90 -0
- data/lib/etl/control/source/model_source.rb +39 -0
- data/lib/etl/core_ext.rb +1 -0
- data/lib/etl/core_ext/time.rb +5 -0
- data/lib/etl/core_ext/time/calculations.rb +42 -0
- data/lib/etl/engine.rb +582 -0
- data/lib/etl/execution.rb +19 -0
- data/lib/etl/execution/base.rb +8 -0
- data/lib/etl/execution/batch.rb +10 -0
- data/lib/etl/execution/job.rb +8 -0
- data/lib/etl/execution/migration.rb +90 -0
- data/lib/etl/generator.rb +2 -0
- data/lib/etl/generator/generator.rb +20 -0
- data/lib/etl/generator/surrogate_key_generator.rb +39 -0
- data/lib/etl/http_tools.rb +139 -0
- data/lib/etl/parser.rb +11 -0
- data/lib/etl/parser/apache_combined_log_parser.rb +49 -0
- data/lib/etl/parser/csv_parser.rb +93 -0
- data/lib/etl/parser/excel_parser.rb +112 -0
- data/lib/etl/parser/fixed_width_parser.rb +65 -0
- data/lib/etl/parser/nokogiri_xml_parser.rb +83 -0
- data/lib/etl/parser/parser.rb +41 -0
- data/lib/etl/parser/sax_parser.rb +218 -0
- data/lib/etl/parser/xml_parser.rb +65 -0
- data/lib/etl/processor.rb +11 -0
- data/lib/etl/processor/block_processor.rb +14 -0
- data/lib/etl/processor/bulk_import_processor.rb +94 -0
- data/lib/etl/processor/check_exist_processor.rb +80 -0
- data/lib/etl/processor/check_unique_processor.rb +39 -0
- data/lib/etl/processor/copy_field_processor.rb +26 -0
- data/lib/etl/processor/database_join_processor.rb +82 -0
- data/lib/etl/processor/encode_processor.rb +55 -0
- data/lib/etl/processor/ensure_fields_presence_processor.rb +24 -0
- data/lib/etl/processor/escape_csv_processor.rb +77 -0
- data/lib/etl/processor/filter_row_processor.rb +51 -0
- data/lib/etl/processor/ftp_downloader_processor.rb +68 -0
- data/lib/etl/processor/ftp_uploader_processor.rb +65 -0
- data/lib/etl/processor/hierarchy_exploder_processor.rb +55 -0
- data/lib/etl/processor/imapattachment_downloader_processor.rb +91 -0
- data/lib/etl/processor/pop3attachment_downloader_processor.rb +90 -0
- data/lib/etl/processor/print_row_processor.rb +12 -0
- data/lib/etl/processor/processor.rb +25 -0
- data/lib/etl/processor/rename_processor.rb +24 -0
- data/lib/etl/processor/require_non_blank_processor.rb +26 -0
- data/lib/etl/processor/row_processor.rb +27 -0
- data/lib/etl/processor/sequence_processor.rb +23 -0
- data/lib/etl/processor/sftp_downloader_processor.rb +63 -0
- data/lib/etl/processor/sftp_uploader_processor.rb +63 -0
- data/lib/etl/processor/surrogate_key_processor.rb +53 -0
- data/lib/etl/processor/truncate_processor.rb +40 -0
- data/lib/etl/processor/zip_file_processor.rb +27 -0
- data/lib/etl/row.rb +20 -0
- data/lib/etl/screen.rb +14 -0
- data/lib/etl/screen/row_count_screen.rb +20 -0
- data/lib/etl/transform.rb +2 -0
- data/lib/etl/transform/block_transform.rb +13 -0
- data/lib/etl/transform/calculation_transform.rb +71 -0
- data/lib/etl/transform/date_to_string_transform.rb +20 -0
- data/lib/etl/transform/decode_transform.rb +51 -0
- data/lib/etl/transform/default_transform.rb +20 -0
- data/lib/etl/transform/foreign_key_lookup_transform.rb +211 -0
- data/lib/etl/transform/hierarchy_lookup_transform.rb +49 -0
- data/lib/etl/transform/md5_transform.rb +13 -0
- data/lib/etl/transform/ordinalize_transform.rb +14 -0
- data/lib/etl/transform/sha1_transform.rb +13 -0
- data/lib/etl/transform/split_fields_transform.rb +27 -0
- data/lib/etl/transform/string_to_date_time_transform.rb +14 -0
- data/lib/etl/transform/string_to_date_transform.rb +16 -0
- data/lib/etl/transform/string_to_time_transform.rb +11 -0
- data/lib/etl/transform/transform.rb +61 -0
- data/lib/etl/transform/trim_transform.rb +26 -0
- data/lib/etl/transform/type_transform.rb +35 -0
- data/lib/etl/util.rb +59 -0
- data/lib/etl/version.rb +3 -0
- data/test-matrix.yml +10 -0
- data/test/.gitignore +1 -0
- data/test/.ignore +2 -0
- data/test/all.ebf +6 -0
- data/test/apache_combined_log.ctl +11 -0
- data/test/batch_test.rb +41 -0
- data/test/batch_with_error.ebf +6 -0
- data/test/batched1.ctl +0 -0
- data/test/batched2.ctl +0 -0
- data/test/block_processor.ctl +6 -0
- data/test/block_processor_error.ctl +1 -0
- data/test/block_processor_pre_post_process.ctl +4 -0
- data/test/block_processor_remove_rows.ctl +5 -0
- data/test/block_processor_test.rb +38 -0
- data/test/check_exist_processor_test.rb +92 -0
- data/test/check_unique_processor_test.rb +40 -0
- data/test/config/Gemfile.rails-2.3.x +3 -0
- data/test/config/Gemfile.rails-2.3.x.lock +53 -0
- data/test/config/Gemfile.rails-3.0.x +3 -0
- data/test/config/Gemfile.rails-3.0.x.lock +61 -0
- data/test/config/common.rb +29 -0
- data/test/connection/mysql/connection.rb +9 -0
- data/test/connection/mysql/schema.sql +37 -0
- data/test/connection/postgresql/connection.rb +13 -0
- data/test/connection/postgresql/schema.sql +40 -0
- data/test/control_test.rb +43 -0
- data/test/data/apache_combined_log.txt +3 -0
- data/test/data/bulk_import.txt +3 -0
- data/test/data/bulk_import_with_empties.txt +3 -0
- data/test/data/decode.txt +3 -0
- data/test/data/delimited.txt +3 -0
- data/test/data/encode_source_latin1.txt +2 -0
- data/test/data/excel.xls +0 -0
- data/test/data/excel2.xls +0 -0
- data/test/data/fixed_width.txt +3 -0
- data/test/data/multiple_delimited_1.txt +3 -0
- data/test/data/multiple_delimited_2.txt +3 -0
- data/test/data/nokogiri.xml +38 -0
- data/test/data/people.txt +3 -0
- data/test/data/sax.xml +14 -0
- data/test/data/xml.xml +16 -0
- data/test/database_join_processor_test.rb +43 -0
- data/test/date_dimension_builder_test.rb +96 -0
- data/test/delimited.ctl +30 -0
- data/test/delimited_absolute.ctl +31 -0
- data/test/delimited_destination_db.ctl +23 -0
- data/test/delimited_excel.ctl +31 -0
- data/test/delimited_insert_update.ctl +34 -0
- data/test/delimited_update.ctl +34 -0
- data/test/delimited_with_bulk_load.ctl +34 -0
- data/test/destination_test.rb +275 -0
- data/test/directive_test.rb +23 -0
- data/test/encode_processor_test.rb +32 -0
- data/test/engine_test.rb +78 -0
- data/test/ensure_fields_presence_processor_test.rb +28 -0
- data/test/errors.ctl +24 -0
- data/test/etl_test.rb +42 -0
- data/test/excel.ctl +24 -0
- data/test/excel2.ctl +25 -0
- data/test/fixed_width.ctl +35 -0
- data/test/foreign_key_lookup_transform_test.rb +50 -0
- data/test/generator_test.rb +14 -0
- data/test/inline_parser.ctl +17 -0
- data/test/mocks/mock_destination.rb +26 -0
- data/test/mocks/mock_source.rb +25 -0
- data/test/model_source.ctl +14 -0
- data/test/multiple_delimited.ctl +22 -0
- data/test/multiple_source_delimited.ctl +39 -0
- data/test/nokogiri_all.ctl +35 -0
- data/test/nokogiri_select.ctl +35 -0
- data/test/nokogiri_test.rb +35 -0
- data/test/parser_test.rb +224 -0
- data/test/performance/delimited.ctl +30 -0
- data/test/processor_test.rb +44 -0
- data/test/row_processor_test.rb +17 -0
- data/test/sax.ctl +26 -0
- data/test/scd/1.txt +1 -0
- data/test/scd/2.txt +1 -0
- data/test/scd/3.txt +1 -0
- data/test/scd_test.rb +257 -0
- data/test/scd_test_type_1.ctl +43 -0
- data/test/scd_test_type_2.ctl +34 -0
- data/test/screen_test.rb +9 -0
- data/test/screen_test_error.ctl +3 -0
- data/test/screen_test_fatal.ctl +3 -0
- data/test/source_test.rb +154 -0
- data/test/test_helper.rb +37 -0
- data/test/transform_test.rb +101 -0
- data/test/truncate_processor_test.rb +37 -0
- data/test/xml.ctl +31 -0
- metadata +370 -0
metadata
ADDED
@@ -0,0 +1,370 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activewarehouse-etl-sgonyea
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.9.6
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Anthony Eden
|
9
|
+
- Thibaut Barrère
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2011-09-28 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
requirement: &70293550394660 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.8.3
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *70293550394660
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: activesupport
|
28
|
+
requirement: &70293550394200 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.1.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *70293550394200
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: activerecord
|
39
|
+
requirement: &70293550393740 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 2.1.0
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *70293550393740
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: fastercsv
|
50
|
+
requirement: &70293550393280 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.2.0
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *70293550393280
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: adapter_extensions
|
61
|
+
requirement: &70293550392820 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 0.9.5.rc1
|
67
|
+
type: :runtime
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *70293550392820
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: shoulda
|
72
|
+
requirement: &70293550392360 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 2.11.3
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *70293550392360
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: flexmock
|
83
|
+
requirement: &70293550391900 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 0.9.0
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *70293550391900
|
92
|
+
- !ruby/object:Gem::Dependency
|
93
|
+
name: mysql
|
94
|
+
requirement: &70293550391440 !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ~>
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 2.8.1
|
100
|
+
type: :development
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: *70293550391440
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: mysql2
|
105
|
+
requirement: &70293550390980 !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.3.7
|
111
|
+
type: :development
|
112
|
+
prerelease: false
|
113
|
+
version_requirements: *70293550390980
|
114
|
+
- !ruby/object:Gem::Dependency
|
115
|
+
name: rdoc
|
116
|
+
requirement: &70293550390600 !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
118
|
+
requirements:
|
119
|
+
- - ! '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
type: :development
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: *70293550390600
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: spreadsheet
|
127
|
+
requirement: &70293550390060 !ruby/object:Gem::Requirement
|
128
|
+
none: false
|
129
|
+
requirements:
|
130
|
+
- - ~>
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 0.6.5.4
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: *70293550390060
|
136
|
+
description: ActiveWarehouse ETL is a pure Ruby Extract-Transform-Load application
|
137
|
+
for loading data into a database.
|
138
|
+
email:
|
139
|
+
- thibaut.barrere@gmail.com
|
140
|
+
executables:
|
141
|
+
- etl
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- .gitignore
|
146
|
+
- 0.9-UPGRADE
|
147
|
+
- CHANGELOG
|
148
|
+
- Gemfile
|
149
|
+
- HOW_TO_RELEASE
|
150
|
+
- LICENSE
|
151
|
+
- README.textile
|
152
|
+
- Rakefile
|
153
|
+
- TODO
|
154
|
+
- active_support_logger.patch
|
155
|
+
- activewarehouse-etl.gemspec
|
156
|
+
- bin/etl
|
157
|
+
- bin/etl.cmd
|
158
|
+
- examples/database.example.yml
|
159
|
+
- lib/etl.rb
|
160
|
+
- lib/etl/batch.rb
|
161
|
+
- lib/etl/batch/batch.rb
|
162
|
+
- lib/etl/batch/directives.rb
|
163
|
+
- lib/etl/builder.rb
|
164
|
+
- lib/etl/builder/date_dimension_builder.rb
|
165
|
+
- lib/etl/builder/time_dimension_builder.rb
|
166
|
+
- lib/etl/commands/etl.rb
|
167
|
+
- lib/etl/control.rb
|
168
|
+
- lib/etl/control/control.rb
|
169
|
+
- lib/etl/control/destination.rb
|
170
|
+
- lib/etl/control/destination/csv_destination.rb
|
171
|
+
- lib/etl/control/destination/database_destination.rb
|
172
|
+
- lib/etl/control/destination/excel_destination.rb
|
173
|
+
- lib/etl/control/destination/file_destination.rb
|
174
|
+
- lib/etl/control/destination/insert_update_database_destination.rb
|
175
|
+
- lib/etl/control/destination/update_database_destination.rb
|
176
|
+
- lib/etl/control/destination/yaml_destination.rb
|
177
|
+
- lib/etl/control/source.rb
|
178
|
+
- lib/etl/control/source/database_source.rb
|
179
|
+
- lib/etl/control/source/enumerable_source.rb
|
180
|
+
- lib/etl/control/source/file_source.rb
|
181
|
+
- lib/etl/control/source/model_source.rb
|
182
|
+
- lib/etl/core_ext.rb
|
183
|
+
- lib/etl/core_ext/time.rb
|
184
|
+
- lib/etl/core_ext/time/calculations.rb
|
185
|
+
- lib/etl/engine.rb
|
186
|
+
- lib/etl/execution.rb
|
187
|
+
- lib/etl/execution/base.rb
|
188
|
+
- lib/etl/execution/batch.rb
|
189
|
+
- lib/etl/execution/job.rb
|
190
|
+
- lib/etl/execution/migration.rb
|
191
|
+
- lib/etl/generator.rb
|
192
|
+
- lib/etl/generator/generator.rb
|
193
|
+
- lib/etl/generator/surrogate_key_generator.rb
|
194
|
+
- lib/etl/http_tools.rb
|
195
|
+
- lib/etl/parser.rb
|
196
|
+
- lib/etl/parser/apache_combined_log_parser.rb
|
197
|
+
- lib/etl/parser/csv_parser.rb
|
198
|
+
- lib/etl/parser/excel_parser.rb
|
199
|
+
- lib/etl/parser/fixed_width_parser.rb
|
200
|
+
- lib/etl/parser/nokogiri_xml_parser.rb
|
201
|
+
- lib/etl/parser/parser.rb
|
202
|
+
- lib/etl/parser/sax_parser.rb
|
203
|
+
- lib/etl/parser/xml_parser.rb
|
204
|
+
- lib/etl/processor.rb
|
205
|
+
- lib/etl/processor/block_processor.rb
|
206
|
+
- lib/etl/processor/bulk_import_processor.rb
|
207
|
+
- lib/etl/processor/check_exist_processor.rb
|
208
|
+
- lib/etl/processor/check_unique_processor.rb
|
209
|
+
- lib/etl/processor/copy_field_processor.rb
|
210
|
+
- lib/etl/processor/database_join_processor.rb
|
211
|
+
- lib/etl/processor/encode_processor.rb
|
212
|
+
- lib/etl/processor/ensure_fields_presence_processor.rb
|
213
|
+
- lib/etl/processor/escape_csv_processor.rb
|
214
|
+
- lib/etl/processor/filter_row_processor.rb
|
215
|
+
- lib/etl/processor/ftp_downloader_processor.rb
|
216
|
+
- lib/etl/processor/ftp_uploader_processor.rb
|
217
|
+
- lib/etl/processor/hierarchy_exploder_processor.rb
|
218
|
+
- lib/etl/processor/imapattachment_downloader_processor.rb
|
219
|
+
- lib/etl/processor/pop3attachment_downloader_processor.rb
|
220
|
+
- lib/etl/processor/print_row_processor.rb
|
221
|
+
- lib/etl/processor/processor.rb
|
222
|
+
- lib/etl/processor/rename_processor.rb
|
223
|
+
- lib/etl/processor/require_non_blank_processor.rb
|
224
|
+
- lib/etl/processor/row_processor.rb
|
225
|
+
- lib/etl/processor/sequence_processor.rb
|
226
|
+
- lib/etl/processor/sftp_downloader_processor.rb
|
227
|
+
- lib/etl/processor/sftp_uploader_processor.rb
|
228
|
+
- lib/etl/processor/surrogate_key_processor.rb
|
229
|
+
- lib/etl/processor/truncate_processor.rb
|
230
|
+
- lib/etl/processor/zip_file_processor.rb
|
231
|
+
- lib/etl/row.rb
|
232
|
+
- lib/etl/screen.rb
|
233
|
+
- lib/etl/screen/row_count_screen.rb
|
234
|
+
- lib/etl/transform.rb
|
235
|
+
- lib/etl/transform/block_transform.rb
|
236
|
+
- lib/etl/transform/calculation_transform.rb
|
237
|
+
- lib/etl/transform/date_to_string_transform.rb
|
238
|
+
- lib/etl/transform/decode_transform.rb
|
239
|
+
- lib/etl/transform/default_transform.rb
|
240
|
+
- lib/etl/transform/foreign_key_lookup_transform.rb
|
241
|
+
- lib/etl/transform/hierarchy_lookup_transform.rb
|
242
|
+
- lib/etl/transform/md5_transform.rb
|
243
|
+
- lib/etl/transform/ordinalize_transform.rb
|
244
|
+
- lib/etl/transform/sha1_transform.rb
|
245
|
+
- lib/etl/transform/split_fields_transform.rb
|
246
|
+
- lib/etl/transform/string_to_date_time_transform.rb
|
247
|
+
- lib/etl/transform/string_to_date_transform.rb
|
248
|
+
- lib/etl/transform/string_to_time_transform.rb
|
249
|
+
- lib/etl/transform/transform.rb
|
250
|
+
- lib/etl/transform/trim_transform.rb
|
251
|
+
- lib/etl/transform/type_transform.rb
|
252
|
+
- lib/etl/util.rb
|
253
|
+
- lib/etl/version.rb
|
254
|
+
- test-matrix.yml
|
255
|
+
- test/.gitignore
|
256
|
+
- test/.ignore
|
257
|
+
- test/all.ebf
|
258
|
+
- test/apache_combined_log.ctl
|
259
|
+
- test/batch_test.rb
|
260
|
+
- test/batch_with_error.ebf
|
261
|
+
- test/batched1.ctl
|
262
|
+
- test/batched2.ctl
|
263
|
+
- test/block_processor.ctl
|
264
|
+
- test/block_processor_error.ctl
|
265
|
+
- test/block_processor_pre_post_process.ctl
|
266
|
+
- test/block_processor_remove_rows.ctl
|
267
|
+
- test/block_processor_test.rb
|
268
|
+
- test/check_exist_processor_test.rb
|
269
|
+
- test/check_unique_processor_test.rb
|
270
|
+
- test/config/Gemfile.rails-2.3.x
|
271
|
+
- test/config/Gemfile.rails-2.3.x.lock
|
272
|
+
- test/config/Gemfile.rails-3.0.x
|
273
|
+
- test/config/Gemfile.rails-3.0.x.lock
|
274
|
+
- test/config/common.rb
|
275
|
+
- test/config/database.example.yml
|
276
|
+
- test/connection/mysql/connection.rb
|
277
|
+
- test/connection/mysql/schema.sql
|
278
|
+
- test/connection/postgresql/connection.rb
|
279
|
+
- test/connection/postgresql/schema.sql
|
280
|
+
- test/control_test.rb
|
281
|
+
- test/data/apache_combined_log.txt
|
282
|
+
- test/data/bulk_import.txt
|
283
|
+
- test/data/bulk_import_with_empties.txt
|
284
|
+
- test/data/decode.txt
|
285
|
+
- test/data/delimited.txt
|
286
|
+
- test/data/encode_source_latin1.txt
|
287
|
+
- test/data/excel.xls
|
288
|
+
- test/data/excel2.xls
|
289
|
+
- test/data/fixed_width.txt
|
290
|
+
- test/data/multiple_delimited_1.txt
|
291
|
+
- test/data/multiple_delimited_2.txt
|
292
|
+
- test/data/nokogiri.xml
|
293
|
+
- test/data/people.txt
|
294
|
+
- test/data/sax.xml
|
295
|
+
- test/data/xml.xml
|
296
|
+
- test/database_join_processor_test.rb
|
297
|
+
- test/date_dimension_builder_test.rb
|
298
|
+
- test/delimited.ctl
|
299
|
+
- test/delimited_absolute.ctl
|
300
|
+
- test/delimited_destination_db.ctl
|
301
|
+
- test/delimited_excel.ctl
|
302
|
+
- test/delimited_insert_update.ctl
|
303
|
+
- test/delimited_update.ctl
|
304
|
+
- test/delimited_with_bulk_load.ctl
|
305
|
+
- test/destination_test.rb
|
306
|
+
- test/directive_test.rb
|
307
|
+
- test/encode_processor_test.rb
|
308
|
+
- test/engine_test.rb
|
309
|
+
- test/ensure_fields_presence_processor_test.rb
|
310
|
+
- test/errors.ctl
|
311
|
+
- test/etl_test.rb
|
312
|
+
- test/excel.ctl
|
313
|
+
- test/excel2.ctl
|
314
|
+
- test/fixed_width.ctl
|
315
|
+
- test/foreign_key_lookup_transform_test.rb
|
316
|
+
- test/generator_test.rb
|
317
|
+
- test/inline_parser.ctl
|
318
|
+
- test/mocks/mock_destination.rb
|
319
|
+
- test/mocks/mock_source.rb
|
320
|
+
- test/model_source.ctl
|
321
|
+
- test/multiple_delimited.ctl
|
322
|
+
- test/multiple_source_delimited.ctl
|
323
|
+
- test/nokogiri_all.ctl
|
324
|
+
- test/nokogiri_select.ctl
|
325
|
+
- test/nokogiri_test.rb
|
326
|
+
- test/output/.ignore
|
327
|
+
- test/parser_test.rb
|
328
|
+
- test/performance/delimited.ctl
|
329
|
+
- test/processor_test.rb
|
330
|
+
- test/row_processor_test.rb
|
331
|
+
- test/sax.ctl
|
332
|
+
- test/scd/1.txt
|
333
|
+
- test/scd/2.txt
|
334
|
+
- test/scd/3.txt
|
335
|
+
- test/scd_test.rb
|
336
|
+
- test/scd_test_type_1.ctl
|
337
|
+
- test/scd_test_type_2.ctl
|
338
|
+
- test/screen_test.rb
|
339
|
+
- test/screen_test_error.ctl
|
340
|
+
- test/screen_test_fatal.ctl
|
341
|
+
- test/source_test.rb
|
342
|
+
- test/test_helper.rb
|
343
|
+
- test/transform_test.rb
|
344
|
+
- test/truncate_processor_test.rb
|
345
|
+
- test/xml.ctl
|
346
|
+
homepage: https://github.com/activewarehouse/activewarehouse-etl
|
347
|
+
licenses: []
|
348
|
+
post_install_message:
|
349
|
+
rdoc_options: []
|
350
|
+
require_paths:
|
351
|
+
- lib
|
352
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
353
|
+
none: false
|
354
|
+
requirements:
|
355
|
+
- - ! '>='
|
356
|
+
- !ruby/object:Gem::Version
|
357
|
+
version: '0'
|
358
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
359
|
+
none: false
|
360
|
+
requirements:
|
361
|
+
- - ! '>='
|
362
|
+
- !ruby/object:Gem::Version
|
363
|
+
version: 1.3.6
|
364
|
+
requirements: []
|
365
|
+
rubyforge_project:
|
366
|
+
rubygems_version: 1.8.6
|
367
|
+
signing_key:
|
368
|
+
specification_version: 3
|
369
|
+
summary: Pure Ruby ETL package.
|
370
|
+
test_files: []
|