-
Notifications
You must be signed in to change notification settings - Fork 2
/
load.rb
28 lines (25 loc) · 872 Bytes
/
load.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
# Development script which loads (all changes to) the code when called.
# Note this script doesn't establish a connection to the database.
load "lib/wgit/version.rb"
load "lib/wgit/logger.rb"
load "lib/wgit/assertable.rb"
load "lib/wgit/utils.rb"
load "lib/wgit/url.rb"
load "lib/wgit/html_to_text.rb"
load "lib/wgit/document.rb"
load "lib/wgit/document_extractors.rb"
load "lib/wgit/crawler.rb"
load "lib/wgit/model.rb"
load "lib/wgit/database/database.rb"
load "lib/wgit/database/database_adapter.rb"
load "lib/wgit/database/adapters/mongo_db.rb"
load "lib/wgit/database/adapters/in_memory.rb"
load "lib/wgit/robots_parser.rb"
load "lib/wgit/indexer.rb"
load "lib/wgit/dsl.rb"
load "lib/wgit/base.rb"
load "lib/wgit/core_ext.rb"
include Wgit # Remove the name space around code (for development purposes).
include DSL
include Assertable