module Deploy

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/deploy.rb, line 35
def configuration
  @configuration ||= Configuration.new
end
configuration_file=(file_location) click to toggle source
# File lib/deploy.rb, line 39
def configuration_file=(file_location)
  @configuration = Configuration.from_file(file_location)
end
configure() { |configuration| ... } click to toggle source
# File lib/deploy.rb, line 29
def configure
  @configuration ||= Configuration.new
  yield @configuration if block_given?
  @configuration
end