File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ source 'https://rubygems.org'
4
4
gemspec
5
5
6
6
# Site dependencies
7
- gem 'minima'
8
7
gem 'jekyll-seo-tag'
9
8
gem 'jekyll-sitemap'
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def app
15
15
it "updates the configuration" do
16
16
config_path = File . expand_path "_config.yml" , fixture_path ( "site" )
17
17
config_body = File . read ( config_path )
18
- config_before = YAML . load ( config_body )
18
+ config_before = SafeYAML . load ( config_body )
19
19
config = config_before . dup
20
20
21
21
config [ "foo" ] = "bar2"
@@ -33,7 +33,7 @@ def app
33
33
it "doesn't inject the default collections" do
34
34
config_path = File . expand_path "_config.yml" , fixture_path ( "site" )
35
35
config_body = File . read ( config_path )
36
- config_before = YAML . load ( config_body )
36
+ config_before = SafeYAML . load ( config_body )
37
37
38
38
config = config_before . dup
39
39
config [ "collections" ] [ "test" ] = { "foo" => "bar" }
You can’t perform that action at this time.
0 commit comments