Class: Dato::Dump::Operation::CreatePost

Inherits:
Object
  • Object
show all
Defined in:
lib/dato/dump/operation/create_post.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(context, path) ⇒ CreatePost

Returns a new instance of CreatePost.



15
16
17
18
# File 'lib/dato/dump/operation/create_post.rb', line 15

def initialize(context, path)
  @context = context
  @path = path
end

Instance Attribute Details

#contentObject

Returns the value of attribute content.



13
14
15
# File 'lib/dato/dump/operation/create_post.rb', line 13

def content
  @content
end

#contextObject (readonly)

Returns the value of attribute context.



10
11
12
# File 'lib/dato/dump/operation/create_post.rb', line 10

def context
  @context
end

#frontmatter_formatObject

Returns the value of attribute frontmatter_format.



12
13
14
# File 'lib/dato/dump/operation/create_post.rb', line 12

def frontmatter_format
  @frontmatter_format
end

#frontmatter_valueObject

Returns the value of attribute frontmatter_value.



12
13
14
# File 'lib/dato/dump/operation/create_post.rb', line 12

def frontmatter_value
  @frontmatter_value
end

#pathObject (readonly)

Returns the value of attribute path.



10
11
12
# File 'lib/dato/dump/operation/create_post.rb', line 10

def path
  @path
end

Instance Method Details

#performObject



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/dato/dump/operation/create_post.rb', line 20

def perform
  FileUtils.mkdir_p(File.dirname(path))

  File.open(File.join(context.path, path), 'w') do |file|
    file.write Format.frontmatter_dump(
      frontmatter_format,
      frontmatter_value
    )
    file.write "\n\n"
    file.write content
  end
end