immosquare-cleaner 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/immosquare-cleaner/version.rb +1 -1
- data/lib/tasks/immosquare_cleaner.rake +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: 57cc27eac071674381ff9d5fd3946d3af30e1a3254437e176494a7f8e9e0d283
|
4
|
+
data.tar.gz: 03e8d8faa7e6d0bec249aa1b607771a0040cb594988b7e1e24568b2d1e077032
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 336ceb03bf97cdc529eee1919978274de9ab2db4f2d56beb8cbdd334fd79c9724cab5fdbb429ed1048b030f03c17d47ceda4e5ff9cde5cf06d724c6979ac8b56
|
7
|
+
data.tar.gz: dcdf8fee9a30e2bf3035599f8346dca05b9ee43072542dbdd80cc993211a552e3b922181b38e7cb814ccc293ad0186ff2cec92e168e5b7696a5b58cdfcaac187
|
@@ -7,7 +7,7 @@ namespace :immosquare_cleaner do
|
|
7
7
|
file_paths = Dir.glob("#{Rails.root}/**/*").reject do |file_path|
|
8
8
|
test1 = file_path.gsub("#{Rails.root}/", "")
|
9
9
|
File.directory?(file_path) ||
|
10
|
-
test1.start_with?("node_modules", "tmp", "public", "log", "app/assets/builds", "app/assets/fonts", "app/assets/images") ||
|
10
|
+
test1.start_with?("node_modules", "tmp", "public", "log", "app/assets/builds", "app/assets/fonts", "app/assets/images", "vendor") ||
|
11
11
|
file_path.end_with?(".lock", ".lockb")
|
12
12
|
end
|
13
13
|
file_paths.each do |file|
|