Class: Artifact::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/artifact.rb

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



76
77
78
79
80
81
82
83
84
# File 'lib/artifact.rb', line 76

def initialize
  @root              = Dir.pwd # current working path
  @source_root       = 'source'
  @posts_path        = 'posts'
  @drafts_path       = 'drafts'
  @uploads_path      = 'uploads'
  @directory_indexes = true
  @rebuild_args      = ''
end