cloulu 0.5.0 → 0.5.1
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 +8 -8
- data/lib/cfoundry/upload_helpers.rb +8 -2
- data/lib/vmc/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NDg1ODU1YjgyODdhZDdiMzY2N2UwMjIyMzBlMzA2ZDU4OWJlNWQ5MQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NTQxNjEzMDQ2MDkxNjNiZjhmMzMyNThhZGZhZmU1NzM3NmE1MmQ5Yg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZWM2ZWUzZDk2ZTliNWI3MDllODU0NDJjMjdkNjA5YTYzNTdjZjllNDZhZWZl
|
|
10
|
+
YjJhODQ0ZjQ1MWFiZjI1ZDE0ZTMxY2RhMzc3OWNjNzBjYzFiOGYxYWRhMmJi
|
|
11
|
+
NjEwMGNiNzI3OWEwZGQwMTViZDE5NDBhOWUxYmNjOWE5YTM0ZTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YTMyMGRiNGI2MTk0ZDQ5ZTI1MzIwOGQ5MTI5NzY0MWU5YmFhZDEwMTg3YTNj
|
|
14
|
+
YTZiZWRlMmI0ZDA2OGE1YTNjYTdlODg5YTNiY2RhYzIyNWI1ZTUzZDZmMGEy
|
|
15
|
+
MDQ4MGM5M2VhYzRiMDc0NzNhZmE5NjFmNjJhNTZlMzI1Zjg4NGU=
|
|
@@ -8,10 +8,11 @@ require "cfoundry/zip"
|
|
|
8
8
|
module CFoundry
|
|
9
9
|
module UploadHelpers
|
|
10
10
|
# Default paths to exclude from upload payload.
|
|
11
|
-
|
|
11
|
+
# for cloulu
|
|
12
|
+
# uploads : glusterfs 디렉토리 활성화 될 수 있도록 제거
|
|
13
|
+
UPLOAD_EXCLUDE = %w{.git _darcs .svn uploads}
|
|
12
14
|
|
|
13
15
|
# Minimum size for an application payload to bother checking resources.
|
|
14
|
-
#RESOURCE_CHECK_LIMIT = 64 * 1024
|
|
15
16
|
RESOURCE_CHECK_LIMIT = 1024 * 1024 * 1024
|
|
16
17
|
|
|
17
18
|
# Upload application's code to target. Do this after #create! and before
|
|
@@ -71,6 +72,11 @@ module CFoundry
|
|
|
71
72
|
exclude += File.read("#{path}/.vmcignore").split(/\n+/)
|
|
72
73
|
end
|
|
73
74
|
|
|
75
|
+
# add cloulu version
|
|
76
|
+
if File.exists?("#{path}/.clignore")
|
|
77
|
+
exclude += File.read("#{path}/.clignore").split(/\n+/)
|
|
78
|
+
end
|
|
79
|
+
|
|
74
80
|
# prevent initial copying if we can, remove sub-files later
|
|
75
81
|
files.reject! do |f|
|
|
76
82
|
exclude.any? do |e|
|
data/lib/vmc/version.rb
CHANGED