Skip to content

Commit 95b189d

Browse files
authored
Merge pull request #1088 from DaanVanVugt/feature/separate_taxila_dir
group taxila ingestors in separate dir
2 parents 536bb28 + 9185852 commit 95b189d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1778
-1657
lines changed

lib/ingestors/dans_ingestor.rb

-70
This file was deleted.

lib/ingestors/dcc_ingestor.rb

-62
This file was deleted.

lib/ingestors/fourtu_llm_ingestor.rb

-28
This file was deleted.

lib/ingestors/ingestor_factory.rb

+28-23
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,45 @@ class IngestorFactory
33
def self.ingestors
44
[
55
Ingestors::BioschemasIngestor,
6-
Ingestors::DansIngestor,
7-
Ingestors::DtlsIngestor,
86
Ingestors::EventbriteIngestor,
97
Ingestors::EventCsvIngestor,
108
Ingestors::IcalIngestor,
11-
Ingestors::LeidenIngestor,
129
Ingestors::LibcalIngestor,
13-
Ingestors::MaastrichtIngestor,
1410
Ingestors::MaterialCsvIngestor,
15-
Ingestors::NwoIngestor,
16-
Ingestors::OscmIngestor,
17-
Ingestors::SurfIngestor,
1811
Ingestors::TessEventIngestor,
19-
Ingestors::UtwenteIngestor,
20-
Ingestors::UuIngestor,
21-
Ingestors::UvaIngestor,
22-
Ingestors::WurIngestor,
2312
Ingestors::ZenodoIngestor,
24-
Ingestors::RugIngestor,
25-
Ingestors::LcrdmIngestor,
26-
Ingestors::TdccIngestor,
27-
Ingestors::UhasseltIngestor,
28-
Ingestors::OdisseiIngestor,
29-
Ingestors::RstIngestor,
30-
Ingestors::OsciIngestor,
31-
Ingestors::DccIngestor,
32-
Ingestors::SenseIngestor,
33-
Ingestors::VuMaterialIngestor,
34-
] + llm_ingestors
13+
] + taxila_ingestors + llm_ingestors
14+
end
15+
16+
def self.taxila_ingestors
17+
[
18+
Ingestors::Taxila::DansIngestor,
19+
Ingestors::Taxila::DtlsIngestor,
20+
Ingestors::Taxila::LeidenIngestor,
21+
Ingestors::Taxila::MaastrichtIngestor,
22+
Ingestors::Taxila::NwoIngestor,
23+
Ingestors::Taxila::OscmIngestor,
24+
Ingestors::Taxila::SurfIngestor,
25+
Ingestors::Taxila::UtwenteIngestor,
26+
Ingestors::Taxila::UuIngestor,
27+
Ingestors::Taxila::UvaIngestor,
28+
Ingestors::Taxila::WurIngestor,
29+
Ingestors::Taxila::RugIngestor,
30+
Ingestors::Taxila::LcrdmIngestor,
31+
Ingestors::Taxila::TdccIngestor,
32+
Ingestors::Taxila::UhasseltIngestor,
33+
Ingestors::Taxila::OdisseiIngestor,
34+
Ingestors::Taxila::RstIngestor,
35+
Ingestors::Taxila::OsciIngestor,
36+
Ingestors::Taxila::DccIngestor,
37+
Ingestors::Taxila::SenseIngestor,
38+
Ingestors::Taxila::VuMaterialIngestor,
39+
]
3540
end
3641

3742
def self.llm_ingestors
3843
[
39-
Ingestors::FourtuLlmIngestor
44+
Ingestors::Taxila::FourtuLlmIngestor
4045
]
4146
end
4247

lib/ingestors/lcrdm_ingestor.rb

-78
This file was deleted.

0 commit comments

Comments
 (0)