solr_wrapper 0.18.0 → 0.18.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 77650c2027982f2b38ccfb7bacd68256533c9a8a
4
- data.tar.gz: 9c9b6e6ff2fb3e152330148fc133d98d16cab042
3
+ metadata.gz: b4003df13bf105dbf5bb12a5593a8cfa5bcaa6fe
4
+ data.tar.gz: 607971ddd802c68cc0d8eaede0eb4121fc90c0d3
5
5
  SHA512:
6
- metadata.gz: 29ad4272bd32b464f3477816731a0a60cc913918c1675a1bb56de0faad36d385b6f7640d398bf90e95c8a22c8008487a297c27fa1ab9795533697d525cfd0731
7
- data.tar.gz: 550b5860c11b95a95d4b3d18aaa746029307029b5df95ecad0a84bf705ec3900fa7648c350feb42fd74a53428b13c358e1e8958baded580b75834c755f4aed6e
6
+ metadata.gz: 2a8437e169cad81c857fdc2513ffe37311a6f3431aa9d6925ba6771a69708d085dff7858ea52794732c2b17cc0b44487259804572a13df3dfd09337fec451c78
7
+ data.tar.gz: 4e44c61e56b5a34d795f646a2db3d7a8a5a8abbbfac65013b97b046366b173042d88b8f435f135bd570c4fdcaa5c5101ddfda5406bd3e1ceae7eab74e1c04173
@@ -221,16 +221,16 @@ module SolrWrapper
221
221
  def clean!
222
222
  stop
223
223
  remove_instance_dir!
224
- FileUtils.remove_entry(config.download_dir, true) if File.exists?(config.download_dir)
225
- FileUtils.remove_entry(config.tmp_save_dir, true) if File.exists? config.tmp_save_dir
224
+ FileUtils.remove_entry(config.download_dir, true) if File.exist?(config.download_dir)
225
+ FileUtils.remove_entry(config.tmp_save_dir, true) if File.exist? config.tmp_save_dir
226
226
  md5.clean!
227
- FileUtils.remove_entry(config.version_file) if File.exists? config.version_file
227
+ FileUtils.remove_entry(config.version_file) if File.exist? config.version_file
228
228
  end
229
229
 
230
230
  ##
231
231
  # Clean up any files in the Solr instance dir
232
232
  def remove_instance_dir!
233
- FileUtils.remove_entry(instance_dir, true) if File.exists? instance_dir
233
+ FileUtils.remove_entry(instance_dir, true) if File.exist? instance_dir
234
234
  end
235
235
 
236
236
  def configure
@@ -278,18 +278,18 @@ module SolrWrapper
278
278
 
279
279
  config.instance_dir
280
280
  ensure
281
- FileUtils.remove_entry config.tmp_save_dir if File.exists? config.tmp_save_dir
281
+ FileUtils.remove_entry config.tmp_save_dir if File.exist? config.tmp_save_dir
282
282
  end
283
283
  # rubocop:enable Lint/RescueException
284
284
 
285
285
  protected
286
286
 
287
287
  def extracted?
288
- File.exists?(config.solr_binary) && extracted_version == config.version
288
+ File.exist?(config.solr_binary) && extracted_version == config.version
289
289
  end
290
290
 
291
291
  def download
292
- unless File.exists?(config.solr_zip_path) && md5.validate?(config.solr_zip_path)
292
+ unless File.exist?(config.solr_zip_path) && md5.validate?(config.solr_zip_path)
293
293
  Downloader.fetch_with_progressbar config.download_url, config.solr_zip_path
294
294
  md5.validate! config.solr_zip_path
295
295
  end
@@ -372,7 +372,7 @@ module SolrWrapper
372
372
  end
373
373
 
374
374
  def extracted_version
375
- File.read(config.version_file).strip if File.exists? config.version_file
375
+ File.read(config.version_file).strip if File.exist? config.version_file
376
376
  end
377
377
 
378
378
  def extracted_version=(version)
@@ -6,7 +6,7 @@ module SolrWrapper
6
6
  end
7
7
 
8
8
  def clean!
9
- FileUtils.remove_entry(config.md5sum_path) if File.exists? config.md5sum_path
9
+ FileUtils.remove_entry(config.md5sum_path) if File.exist? config.md5sum_path
10
10
  end
11
11
 
12
12
  def validate?(file)
@@ -33,7 +33,7 @@ module SolrWrapper
33
33
  end
34
34
 
35
35
  def md5file
36
- unless File.exists? config.md5sum_path
36
+ unless File.exist? config.md5sum_path
37
37
  Downloader.fetch_with_progressbar config.md5url, config.md5sum_path
38
38
  end
39
39
 
@@ -56,7 +56,7 @@ module SolrWrapper
56
56
  end
57
57
 
58
58
  def managed?
59
- File.exists?(instance_dir)
59
+ File.exist?(instance_dir)
60
60
  end
61
61
 
62
62
  def download_url
@@ -1,3 +1,3 @@
1
1
  module SolrWrapper
2
- VERSION = '0.18.0'
2
+ VERSION = '0.18.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solr_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-09-06 00:00:00.000000000 Z
11
+ date: 2016-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday