Gemfile`Bundler 无法继续`意外':'错误[Ruby]
Gemfile `Bundler cannot continue` unexpected ':' error [Ruby]
我是 Ruby 的新手。当我 运行 命令 bundle update
时出现错误。这就是我的 Gemfile 的样子:
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "jekyll", "~> 3.8"
gem "github-pages", group: :jekyll_plugins
plugins:
- jekyll-sitemap
- jekyll-paginate
- jekyll-redirect-from
- github-pages
这是我在 运行 bundle update
:
时得到的错误
[!] There was an error parsing `Gemfile`: syntax error, unexpected ':', expecting end-of-input - plugins:
^
. Bundler cannot continue.
# from /home/<user>/Documents/projects/<user>.github.io/Gemfile:10
# -------------------------------------------
#
> plugins:
# - jekyll-sitemap
期待有关如何解决此问题的任何指示。谢谢!
您的 Gemfile 是 Bundler 的 Ruby 文件,它指定了您的项目需要的 gems。您在 Gemfile 中编写的 plugins:
部分是 YAML,旨在进入 _config.yml
,而不是 Ruby,因此您的语法错误。
您需要将 Gemfile 的这一部分重写为 Ruby,在 gem 组 jekyll_plugins
中,以便 Jekyll 知道将那些 gem 用作插件:
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "jekyll", "~> 3.8"
group :jekyll_plugins do
gem "jekyll-sitemap"
gem "jekyll-paginate"
gem "jekyll-redirect-from"
gem "github-pages"
end
还有其他方法可以做到这一点,listed on the Jekyll documentation,但我推荐这个。
我是 Ruby 的新手。当我 运行 命令 bundle update
时出现错误。这就是我的 Gemfile 的样子:
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "jekyll", "~> 3.8"
gem "github-pages", group: :jekyll_plugins
plugins:
- jekyll-sitemap
- jekyll-paginate
- jekyll-redirect-from
- github-pages
这是我在 运行 bundle update
:
[!] There was an error parsing `Gemfile`: syntax error, unexpected ':', expecting end-of-input - plugins:
^
. Bundler cannot continue.
# from /home/<user>/Documents/projects/<user>.github.io/Gemfile:10
# -------------------------------------------
#
> plugins:
# - jekyll-sitemap
期待有关如何解决此问题的任何指示。谢谢!
您的 Gemfile 是 Bundler 的 Ruby 文件,它指定了您的项目需要的 gems。您在 Gemfile 中编写的 plugins:
部分是 YAML,旨在进入 _config.yml
,而不是 Ruby,因此您的语法错误。
您需要将 Gemfile 的这一部分重写为 Ruby,在 gem 组 jekyll_plugins
中,以便 Jekyll 知道将那些 gem 用作插件:
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "jekyll", "~> 3.8"
group :jekyll_plugins do
gem "jekyll-sitemap"
gem "jekyll-paginate"
gem "jekyll-redirect-from"
gem "github-pages"
end
还有其他方法可以做到这一点,listed on the Jekyll documentation,但我推荐这个。