8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/rawfeed/draft.rb', line 8
def self.draft_create
array = Rawfeed::Utils.enginer(Rawfeed::CONFIG['DRAFTS_DIR'], 'Enter new draft title:', 'draft')
puts "Creating new draft: #{array[3]}"
File.open(array[3], 'w') do |file|
file.puts("---")
file.puts("layout: post")
file.puts("author: # \"Your Name\"")
file.puts("title: \"#{array[0]}\"")
file.puts("description: \"Description of your post\"")
file.puts("date: #{array[2]} -0300")
file.puts("update_date: ")
file.puts("comments: false")
file.puts("tags: [tag1, tag2]")
file.puts("---")
file.puts("")
file.puts "<!-- Write from here your post !!! -->"
end
puts "Created successfully!"
end
|