class Contracto::Config

Attributes

repo_url[RW]

Public Class Methods

configure() { |self| ... } click to toggle source
# File lib/contracto/config.rb, line 8
def configure
  yield self if block_given?
end
root_dir() click to toggle source
# File lib/contracto/config.rb, line 16
def root_dir
  @root_dir || default_root_dir
end
root_dir=(root_dir) click to toggle source
# File lib/contracto/config.rb, line 12
def root_dir=(root_dir)
  @root_dir = "#{current_dir}/#{root_dir}"
end