Class: Artifact::Config
- Inherits:
-
Object
- Object
- Artifact::Config
- Defined in:
- lib/artifact.rb
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
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 |