immosquare-extensions 0.1.12 → 0.1.13

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
  SHA256:
3
- metadata.gz: bee4b681ff194e3739723acbc3026ace76793f7119229cabaa0aa4d795007573
4
- data.tar.gz: '03689e87c873fe5fcdc6f6b003203a17cc6cea00e3fef4a73176a89fb360de90'
3
+ metadata.gz: 5b4cad039db2d2b1ee44eb735d1c6c710893b4aca057782689e060eb065275bb
4
+ data.tar.gz: 4a87efbeca74628edbc47da54e24a9287dd765e248e7900a269c93f5ccad9dcc
5
5
  SHA512:
6
- metadata.gz: d3ae2393f83f0faa8c5fd6bbfdc575c4117682c413adfa4f131aee04acce58c1fb989c252c9e73c1bc38e0c952f1f3eec54abc858896d53014983b68b738cd53
7
- data.tar.gz: e36f3125e9a7c1bc8399be1a4ca6a61ab3e393537f3430a85eebc45b3340dbef42ce51dbfde3e93132c8f5cc22768eaf57390c5230e7ba973d802828b62191be
6
+ metadata.gz: 5c448e5db2ad0358f3e5bf5ea27cd184a5a8bfc159269a1dc7b93bc4b497f7555021c2c2a82071b925da25456839272f7b875060846f2f4c5e5e1707df983232
7
+ data.tar.gz: 5437907a34109b7edfb622eed9fa081ba878ef9c207261a7ed389b8b7276a8ea0bcedff2b065663b5f2c42cb976be0f229cefcafc3aae3666f3b1903e5e6e167
@@ -18,8 +18,13 @@ class File
18
18
  ##============================================================##
19
19
  ## Read all lines from the file
20
20
  ## https://gist.github.com/guilhermesimoes/d69e547884e556c3dc95
21
+ ## Detect the encoding of the file using uchardet
22
+ ## Read the content of the file with the detected encoding,
23
+ ## falling back to UTF-8 if the detected encoding is empty or invalid.
21
24
  ##============================================================##
22
- content = File.read(file_path)
25
+ detected_encoding = `uchardet #{file_path}`.strip
26
+ encoding_to_use = detected_encoding.empty? ? "UTF-8" : "#{detected_encoding}:UTF-8"
27
+ content = File.read(file_path, :encoding => encoding_to_use)
23
28
 
24
29
  ##===========================================================================##
25
30
  ## Remove all trailing empty lines at the end of the file
@@ -34,7 +39,7 @@ class File
34
39
  ##===========================================================================##
35
40
  ## Write the modified lines back to the file
36
41
  ##===========================================================================##
37
- File.write(file_path, content)
42
+ File.write(file_path, content, :encoding => encoding_to_use)
38
43
 
39
44
  ##===========================================================================##
40
45
  ## Return the total number of lines in the modified file
@@ -1,3 +1,3 @@
1
1
  module ImmosquareExtensions
2
- VERSION = "0.1.12".freeze
2
+ VERSION = "0.1.13".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immosquare-extensions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.12
4
+ version: 0.1.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - IMMO SQUARE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-05 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode_utils