Add 'ruby' to pre-filled Gemfile for 'jekyll new'

Fixes #4839
This commit is contained in:
Parker Moore 2016-05-12 12:19:46 -05:00
parent 209cd6b729
commit 1ae4f513d8
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 5 additions and 4 deletions

View File

@ -35,7 +35,7 @@ module Jekyll
File.open(File.expand_path(initialized_post_name, new_blog_path), "w") do |f| File.open(File.expand_path(initialized_post_name, new_blog_path), "w") do |f|
f.write(scaffold_post_content) f.write(scaffold_post_content)
end end
File.open(File.expand_path("Gemfile", new_blog_path), "w") do |f| File.open(File.expand_path("Gemfile", new_blog_path), "w") do |f|
f.write(gemfile_contents) f.write(gemfile_contents)
end end
@ -63,11 +63,12 @@ module Jekyll
end end
private private
def gemfile_contents def gemfile_contents
<<-RUBY <<-RUBY
source "https://rubygems.org" source "https://rubygems.org"
ruby RUBY_VERSION
# 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
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
@ -81,7 +82,7 @@ gem "jekyll", "#{Jekyll::VERSION}"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`. # uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins # gem "github-pages", group: :jekyll_plugins
# 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"