Use double quotes in the gemfile

This commit is contained in:
Parker Moore 2016-03-23 17:25:19 -07:00
parent da35e134f1
commit 22d9312eaf
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ module Jekyll
def gemfile_contents def gemfile_contents
<<-RUBY <<-RUBY
source 'https://rubygems.org' source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run. # 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 # 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! # If you have any plugins, put them here!
# group :jekyll_plugins do # group :jekyll_plugins do
# gem 'jekyll-github-metadata', '~> 1.0' # gem "jekyll-github-metadata", "~> 1.0"
# end # end
RUBY RUBY
end end