Class: DeployDoc::Config
- Inherits:
-
Struct
- Object
- Struct
- DeployDoc::Config
- Defined in:
- lib/deploy_doc/config.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#data_dir ⇒ Object
Returns the value of attribute data_dir.
-
#docker_image ⇒ Object
Returns the value of attribute docker_image.
-
#docker_socket ⇒ Object
Returns the value of attribute docker_socket.
-
#markdown_file ⇒ Object
Returns the value of attribute markdown_file.
Class Method Summary collapse
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action
2 3 4 |
# File 'lib/deploy_doc/config.rb', line 2 def action @action end |
#data_dir ⇒ Object
Returns the value of attribute data_dir
2 3 4 |
# File 'lib/deploy_doc/config.rb', line 2 def data_dir @data_dir end |
#docker_image ⇒ Object
Returns the value of attribute docker_image
2 3 4 |
# File 'lib/deploy_doc/config.rb', line 2 def docker_image @docker_image end |
#docker_socket ⇒ Object
Returns the value of attribute docker_socket
2 3 4 |
# File 'lib/deploy_doc/config.rb', line 2 def docker_socket @docker_socket end |
#markdown_file ⇒ Object
Returns the value of attribute markdown_file
2 3 4 |
# File 'lib/deploy_doc/config.rb', line 2 def markdown_file @markdown_file end |
Class Method Details
.defaults ⇒ Object
3 4 5 |
# File 'lib/deploy_doc/config.rb', line 3 def self.defaults Config.new(nil, nil, "unix:///var/run/docker.sock", "ruby:2.3", ".") end |