Module: DockerFlow
- Defined in:
- lib/docker-flow.rb
Defined Under Namespace
Classes: RakeBuilder, Utils
Class Method Summary
collapse
Class Method Details
.default_options ⇒ Object
13
14
15
16
17
|
# File 'lib/docker-flow.rb', line 13
def default_options
{
line_length: 80
}
end
|
.options ⇒ Object
19
20
21
|
# File 'lib/docker-flow.rb', line 19
def options
@options ||= default_options
end
|
.options=(new_options) ⇒ Object
23
24
25
|
# File 'lib/docker-flow.rb', line 23
def options=(new_options)
@options = default_options.merge(new_options || {})
end
|
.version ⇒ Object
9
10
11
|
# File 'lib/docker-flow.rb', line 9
def version
'0.0.0'
end
|