Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/jekyll-compose/file_mover.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def update_front_matter
if content =~ Jekyll::Document::YAML_FRONT_MATTER_REGEXP
content = $POSTMATCH
match = Regexp.last_match[1] if Regexp.last_match
data = movement.front_matter(Psych.safe_load(match))
data = movement.front_matter(Psych.safe_load(match, permitted_classes: [Date, Time]))
File.write(from, "#{Psych.dump(data)}---\n#{content}")
end
rescue Psych::SyntaxError => e
Expand Down
6 changes: 3 additions & 3 deletions spec/compose_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down Expand Up @@ -332,7 +332,7 @@
capture_stdout { described_class.process(args, options) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down Expand Up @@ -513,7 +513,7 @@
capture_stdout { described_class.process(args, options) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down
2 changes: 1 addition & 1 deletion spec/draft_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down
2 changes: 1 addition & 1 deletion spec/post_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
capture_stdout { described_class.process(args) }
post = File.read(path)
expect(post).to match(%r!description: my description!)
expect(post).to match(%r!category: !)
expect(post).to match(%r!category:!)
end

context "env variable EDITOR is set up" do
Expand Down