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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ODdkYTgxMDI3OTIwYTE0OTljNDEzMDRkZThjMjAzNmY2OWYyZGQ2Ng==
4
+ NDg1ODU1YjgyODdhZDdiMzY2N2UwMjIyMzBlMzA2ZDU4OWJlNWQ5MQ==
5
5
  data.tar.gz: !binary |-
6
- NjA0MmMxNWY1NDY1YmFkYmI1NzU4M2JlYjMwNjQ4NzNlMWIxNDVmYQ==
6
+ NTQxNjEzMDQ2MDkxNjNiZjhmMzMyNThhZGZhZmU1NzM3NmE1MmQ5Yg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MjViYzgwZWFkM2QyNzQ4MGI2MTI4Y2ViZDliNWZlOTU2YjdkMmMwMjZiMDdj
10
- ZjRhZWI2MDVmZjJiMzIzYTY5ZDFjY2U0ZWE1MjU4M2QyNDJjNGEzYTY1MjFh
11
- NjgwZDQ2ZDc3OTM2ZmViY2Y5MDczOWU5NzdlMzAwYWM5ZmYwOGU=
9
+ ZWM2ZWUzZDk2ZTliNWI3MDllODU0NDJjMjdkNjA5YTYzNTdjZjllNDZhZWZl
10
+ YjJhODQ0ZjQ1MWFiZjI1ZDE0ZTMxY2RhMzc3OWNjNzBjYzFiOGYxYWRhMmJi
11
+ NjEwMGNiNzI3OWEwZGQwMTViZDE5NDBhOWUxYmNjOWE5YTM0ZTc=
12
12
  data.tar.gz: !binary |-
13
- N2FlYmVmNzY1YTAwMTZiNmE3NzNiZjliOThmNmNkNDVhOTE4MWIzY2U3YTA3
14
- MTljNDEyNzRlOGRmNDNlZjgyMGM5YTM5OGY0ZDNhOTZiYzU1YmQwOWZmMTE2
15
- ZGIzMzRiYTBkYmJmMDc4ZjU0NTczMGY5ZDk4ZWNiZmMxMDI1Mzg=
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
- UPLOAD_EXCLUDE = %w{.git _darcs .svn}
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
@@ -1,3 +1,3 @@
1
1
  module VMC
2
- VERSION = "0.5.0".freeze
2
+ VERSION = "0.5.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - SKPlanet Cloulu Team