sphinx_tv 0.9.3 → 0.9.4
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.
- data/lib/sphinx_tv.rb +1 -1
- data/lib/sphinx_tv/version.rb +1 -1
- metadata +1 -1
data/lib/sphinx_tv.rb
CHANGED
|
@@ -89,7 +89,6 @@ class SphinxTv
|
|
|
89
89
|
end
|
|
90
90
|
|
|
91
91
|
def save_configuration
|
|
92
|
-
Dir.mkdir(CONFIG_DIRECTORY) unless File.exists? CONFIG_DIRECTORY
|
|
93
92
|
File.open(File.join(CONFIG_DIRECTORY, "sphinx.yml"), "w") do |file|
|
|
94
93
|
file.write @config.to_yaml
|
|
95
94
|
end
|
|
@@ -184,6 +183,7 @@ class SphinxTv
|
|
|
184
183
|
end
|
|
185
184
|
|
|
186
185
|
def run
|
|
186
|
+
Dir.mkdir(CONFIG_DIRECTORY) unless File.exists? CONFIG_DIRECTORY
|
|
187
187
|
@no_config = load_configuration
|
|
188
188
|
|
|
189
189
|
action = nil
|
data/lib/sphinx_tv/version.rb
CHANGED