immosquare-extensions 0.1.13 → 0.1.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/immosquare-extensions/file.rb +11 -0
- data/lib/immosquare-extensions/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1bac31a6c2a9a5a15dc679176b78175cfc45f206f769e1dfaf651f32c9765a4
|
4
|
+
data.tar.gz: b46910b5fa67745109a1dfe38b9150797dc8eded7f1f4abc5bee4ee91cb27d84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a991f9a2afa423b7fa4b97cc771b6587a686a2a60ca81ed5bafdf9fc55655433640a118e3d3491400690342450655afac09ee8032e91f21f79e2b7a39d47ffb
|
7
|
+
data.tar.gz: 81e58a39befe80f489aa89d12589219146558684be06a864ebd3c828824fa895160cc333fa283138d125a227370d0c699fe146483c6db1b51373cf0729bffe0e
|
@@ -14,6 +14,17 @@ class File
|
|
14
14
|
## The total number of lines in the normalized file.
|
15
15
|
##===========================================================================##
|
16
16
|
def self.normalize_last_line(file_path)
|
17
|
+
##============================================================##
|
18
|
+
## Get the file size
|
19
|
+
##============================================================##
|
20
|
+
file_size = File.size?(file_path)
|
21
|
+
|
22
|
+
##============================================================##
|
23
|
+
## If the file is empty (0 bytes), there's nothing to normalize.
|
24
|
+
##============================================================##
|
25
|
+
return 0 if file_size.nil? || file_size == 0
|
26
|
+
|
27
|
+
|
17
28
|
end_of_line = $INPUT_RECORD_SEPARATOR || "\n"
|
18
29
|
##============================================================##
|
19
30
|
## Read all lines from the file
|