Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests and warning when running publish/unpublish with date in frontmatter #134

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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