lib/conf.rb in smashing_docs-1.0.0 vs lib/conf.rb in smashing_docs-1.1.0
- old
+ new
@@ -1,8 +1,9 @@
class SmashingDocs::Conf
class << self
- attr_accessor :template_file, :output_file, :run_all
-
+ attr_accessor :template_file, :output_file, :auto_push, :run_all
+ @output_file = 'documentation.md'
+
def template
raise 'You must set a template file.' unless template_file
File.read(template_file)
end