negroku 2.3.2 → 2.3.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47fbe541a572af01e0198fb24c1edad42d1fdb6e
|
4
|
+
data.tar.gz: 18fcf84717549fd7b30d4e16c0179cb503860382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4906ec12a9ec0f92b1f0ca3a7e815fd807d6433dd68696eb58de51dba2e671412f95c9f913953edc34a51205701c6c3e9d28c23a8cd3813f73d6cd032f36e83a
|
7
|
+
data.tar.gz: 3621dac63653de1cee3bfb22ab7b5582063cdf9257f19e3ee27f7a08a2e7319abe0a23e14f5001201de5613092a83a1714e2ecd1894af4d839fe83ed3e5ef695
|
@@ -8,7 +8,9 @@ namespace :load do
|
|
8
8
|
set :sphinx_roles, :app
|
9
9
|
|
10
10
|
# Local path to look for custom config template
|
11
|
-
set :thinking_sphinx_template, -> { "config/#{fetch(:stage)}/thinking_sphinx.yml.erb" }
|
11
|
+
set :thinking_sphinx_template, -> { "config/deploy/#{fetch(:stage)}/thinking_sphinx.yml.erb" }
|
12
|
+
|
13
|
+
set :thinking_sphinx_env, -> { "#{fetch(:stage)}" }
|
12
14
|
|
13
15
|
# Link thinking_sphinx.yml file
|
14
16
|
set :linked_files, fetch(:linked_files, []) << 'config/thinking_sphinx.yml'
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# Thinking Sphinx Base configuration file
|
3
3
|
##############################################
|
4
4
|
|
5
|
-
<%= fetch(:
|
5
|
+
<%= fetch(:thinking_sphinx_env) %>:
|
6
6
|
pid_file: <%= fetch(:thinking_sphinx_pid_file) %>
|
7
7
|
indices_location: <%= fetch(:thinking_sphinx_indices_location) %>
|
8
8
|
configuration_file: <%= fetch(:thinking_sphinx_configuration_file) %>
|
data/lib/negroku/version.rb
CHANGED