atk_toolbox 0.0.87 → 0.0.88
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 +4 -4
- data/lib/atk/file_sys.rb +2 -2
- data/lib/atk_toolbox/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: 56ed386c598760ad632d38b24699c1e161ef24ebf58596d6db1ba19787d22ce5
|
|
4
|
+
data.tar.gz: 11e708122a15021df2a99aa9c970fc086b45b69d9b4e7c91ecc2b12cd7108ed0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90ad3c2aed654ad3ff77dc19416ae1c349a0fb6b2246489a8c912d5068b36f24de9fd8ef8ef348ce62182625b8212e72bd37598b832043cb6a92906bc9cd89b0
|
|
7
|
+
data.tar.gz: b1c962f58fe49d0706b4304abeeafcc77ac78771a4fd4390cc23ca59a976cc7db2772b0be2a046cac2196acb867f0391a29c2b60e35b251d92f4186040a8226e
|
data/lib/atk/file_sys.rb
CHANGED
|
@@ -29,7 +29,7 @@ class String
|
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
module FileSys
|
|
33
33
|
# This is a combination of the FileUtils, File, Pathname, IO, Etc, and Dir classes,
|
|
34
34
|
# along with some other helpful methods
|
|
35
35
|
# It is by-default forceful (dangerous/overwriting)
|
|
@@ -341,7 +341,7 @@ class FileSys
|
|
|
341
341
|
File.size?(*args)
|
|
342
342
|
end
|
|
343
343
|
end
|
|
344
|
-
singleton_class.send(:alias_method, :
|
|
344
|
+
singleton_class.send(:alias_method, :size_of, :size?)
|
|
345
345
|
|
|
346
346
|
def self.socket?(*args)
|
|
347
347
|
File.socket?(*args)
|
data/lib/atk_toolbox/version.rb
CHANGED