Class: Vx::Builder::BuildConfiguration
- Inherits:
-
Object
- Object
- Vx::Builder::BuildConfiguration
show all
- Defined in:
- lib/vx/builder/build_configuration.rb,
lib/vx/builder/build_configuration/env.rb,
lib/vx/builder/build_configuration/cache.rb,
lib/vx/builder/build_configuration/vexor.rb,
lib/vx/builder/build_configuration/deploy.rb,
lib/vx/builder/build_configuration/deploy/base.rb,
lib/vx/builder/build_configuration/deploy/shell.rb
Defined Under Namespace
Classes: Cache, Deploy, Env, Vexor
Constant Summary
collapse
- REQUIRED_KEYS =
%w{
rvm
scala
jdk
language
script
}
- ATTRIBUTES =
%w{
rvm
scala
jdk
language
gemfile
services
image
bundler_args
before_install
before_script
script
after_success
before_deploy
after_deploy
}
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(new_attributes = {}, matrix_attributes = {}) ⇒ BuildConfiguration
Returns a new instance of BuildConfiguration.
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/vx/builder/build_configuration.rb', line 54
def initialize(new_attributes = {}, matrix_attributes = {})
new_attributes = {} unless new_attributes.is_a?(Hash)
@env = Env.new new_attributes.delete("env")
@cache = Cache.new new_attributes.delete("cache")
@vexor = Vexor.new new_attributes.delete("vexor")
@deploy = Deploy.new new_attributes.delete("deploy")
@deploy_modules = new_attributes.delete("deploy_modules") || []
@deploy_modules = Deploy.restore_modules(@deploy_modules)
@matrix_attributes = matrix_attributes
build_attributes new_attributes
end
|
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def attributes
@attributes
end
|
#cache ⇒ Object
Returns the value of attribute cache.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def cache
@cache
end
|
#deploy ⇒ Object
Returns the value of attribute deploy.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def deploy
@deploy
end
|
#deploy_modules ⇒ Object
Returns the value of attribute deploy_modules.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def deploy_modules
@deploy_modules
end
|
#env ⇒ Object
Returns the value of attribute env.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def env
@env
end
|
#vexor ⇒ Object
Returns the value of attribute vexor.
52
53
54
|
# File 'lib/vx/builder/build_configuration.rb', line 52
def vexor
@vexor
end
|
Class Method Details
.from_file(file) ⇒ Object
45
46
47
48
49
|
# File 'lib/vx/builder/build_configuration.rb', line 45
def from_file(file)
if File.readable? file
from_yaml File.read(file)
end
end
|
.from_yaml(yaml) ⇒ Object
40
41
42
43
|
# File 'lib/vx/builder/build_configuration.rb', line 40
def from_yaml(yaml)
hash = YAML.load(yaml)
new hash
end
|
Instance Method Details
#any? ⇒ Boolean
70
71
72
73
74
|
# File 'lib/vx/builder/build_configuration.rb', line 70
def any?
REQUIRED_KEYS.any? do |key|
attributes[key].any?
end
end
|
#cached_directories ⇒ Object
129
130
131
|
# File 'lib/vx/builder/build_configuration.rb', line 129
def cached_directories
cache.enabled? and cache.directories
end
|
#deploy? ⇒ Boolean
94
95
96
|
# File 'lib/vx/builder/build_configuration.rb', line 94
def deploy?
deploy.attributes.any?
end
|
#deploy_modules? ⇒ Boolean
98
99
100
|
# File 'lib/vx/builder/build_configuration.rb', line 98
def deploy_modules?
deploy_modules.any?
end
|
#env_matrix ⇒ Object
121
122
123
|
# File 'lib/vx/builder/build_configuration.rb', line 121
def env_matrix
env.matrix
end
|
#flat_matrix_attributes ⇒ Object
77
78
79
|
# File 'lib/vx/builder/build_configuration.rb', line 77
def flat_matrix_attributes
@matrix_attributes
end
|
#language ⇒ Object
125
126
127
|
# File 'lib/vx/builder/build_configuration.rb', line 125
def language
@attributes["language"].first
end
|
#matrix_attributes ⇒ Object
81
82
83
84
85
86
87
88
89
90
91
92
|
# File 'lib/vx/builder/build_configuration.rb', line 81
def matrix_attributes
@matrix_attributes.inject({}) do |a,pair|
k,v = pair
if k == 'env'
v = v["matrix"].first
end
if v
a[k] = v
end
a
end
end
|
#matrix_id ⇒ Object
103
104
105
|
# File 'lib/vx/builder/build_configuration.rb', line 103
def matrix_id
matrix_attributes.to_a.map{|i| i.join(":") }.sort.join(", ")
end
|
#to_hash ⇒ Object
107
108
109
110
111
112
113
114
115
|
# File 'lib/vx/builder/build_configuration.rb', line 107
def to_hash
attributes.merge(
"env" => env.attributes,
"cache" => cache.attributes,
"vexor" => vexor.attributes,
"deploy" => deploy.attributes,
"deploy_modules" => deploy_modules.map(&:to_hash)
)
end
|
#to_yaml ⇒ Object
117
118
119
|
# File 'lib/vx/builder/build_configuration.rb', line 117
def to_yaml
to_hash.to_yaml
end
|