base_indexer 0.3 → 0.3.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 +4 -4
- data/lib/base_indexer/engine.rb +3 -3
- data/lib/base_indexer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc2b857a204cdb42d04c834c080dc52e3aea19f4
|
|
4
|
+
data.tar.gz: a57b3855269a109320beeacec4c72e82444a6635
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c42ddb24d31a70b1542720fd870810ab52ab9f103310d263fa1fe58869020849fd120c85d893b3465cbcc1b992721f098d5fa22abd94df0e3b58d5ec162b1776
|
|
7
|
+
data.tar.gz: a4b73649485f2ac01bea5e7136a83b0465250e886ff38dd2c70136572eeeda6124d0d1a91145ba4516a14f6443b2d1dda11f5a5677cffd471cf27dfeff0d9fdb
|
data/lib/base_indexer/engine.rb
CHANGED
|
@@ -10,13 +10,13 @@ module BaseIndexer
|
|
|
10
10
|
config.generators do |g|
|
|
11
11
|
g.test_framework :rspec
|
|
12
12
|
end
|
|
13
|
-
|
|
13
|
+
config.app_version = "0.0"
|
|
14
|
+
config.app_name = "[You have to override this name in your app]"
|
|
15
|
+
|
|
14
16
|
config.after_initialize do
|
|
15
17
|
|
|
16
18
|
# Reads the SOLR configuration fiel
|
|
17
19
|
BaseIndexer.solr_configuration_class_name.constantize.instance.read(Rails.configuration.solr_config_file_path ||= 'test')
|
|
18
|
-
config.app_version = "0.0"
|
|
19
|
-
config.app_name = "[You have to override this name in your app]"
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
# Initializes the DiscoveryIndexer log with Rails logger, so all the messages will go to
|
data/lib/base_indexer/version.rb
CHANGED