File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 33source "https://rubygems.org"
44gemspec
55
6- if ENV [ "GH_PAGES" ]
7- gem "github-pages"
8- end
6+ gem "github-pages" if ENV [ "GH_PAGES" ]
Original file line number Diff line number Diff line change 142142
143143 it "doesn't overwrite redirets.json" do
144144 expect ( path ) . to exist
145- expect ( redirects ) . to eql ( { "foo" => "bar" } )
145+ expect ( redirects ) . to eql ( "foo" => "bar" )
146146 end
147147 end
148148 end
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def dest_dir(*paths)
3434 end
3535
3636 def config
37- Jekyll . configuration ( {
37+ Jekyll . configuration (
3838 "source" => fixtures_path . to_s ,
3939 "destination" => fixtures_path . join ( "_site" ) . to_s ,
4040 "collections" => {
@@ -49,8 +49,8 @@ def config
4949 "defaults" => [ {
5050 "scope" => { "path" => "" } ,
5151 "values" => { "layout" => "layout" } ,
52- } , ] ,
53- } ) . backwards_compatibilize
52+ } ]
53+ ) . backwards_compatibilize
5454 end
5555
5656 def site
You can’t perform that action at this time.
0 commit comments