From 22d9312eafed6e14e844ecf6ad7e3f70d59bbb37 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Wed, 23 Mar 2016 17:25:19 -0700 Subject: [PATCH] Use double quotes in the gemfile --- lib/jekyll/commands/new.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jekyll/commands/new.rb b/lib/jekyll/commands/new.rb index b4ecf808..689895be 100644 --- a/lib/jekyll/commands/new.rb +++ b/lib/jekyll/commands/new.rb @@ -66,7 +66,7 @@ module Jekyll def gemfile_contents <<-RUBY -source 'https://rubygems.org' +source "https://rubygems.org" # Hello! This is where you manage which Jekyll version is used to run. # When you want to use a different version, change it below, save the @@ -84,7 +84,7 @@ gem "jekyll", "#{Jekyll::VERSION}" # If you have any plugins, put them here! # group :jekyll_plugins do -# gem 'jekyll-github-metadata', '~> 1.0' +# gem "jekyll-github-metadata", "~> 1.0" # end RUBY end