未使用:path选项安装的宝石文件

时间:2019-02-15 16:10:41

标签: ruby-on-rails jekyll-theme

我正在宝石文件.../Gems/mytheme-0.1.0.gem中开发一个jekyll主题

我想用bundle install安装它(和其他),为此我有一个

具有以下内容的宝石文件

source "https://rubygems.org"
ruby RUBY_VERSION
# Happy Jekylling!

gem "jekyll", ">=3.8"
gem "mytheme",'0.1.0' , :path => "../../../Gems"

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

安装似乎成功

using bundler 1.16.6
Using colorator 1.1.0
Using concurrent-ruby 1.1.4
Using eventmachine 1.2.7 (x64-mingw32)
Using http_parser.rb 0.6.0
Using em-websocket 0.5.1
Using ffi 1.10.0 (x64-mingw32)
Using forwardable-extended 2.6.0
Using i18n 0.9.5
Using rb-fsevent 0.10.3
Using rb-inotify 0.10.0
Using sass-listen 4.0.0
Using sass 3.7.3
Using jekyll-sass-converter 1.5.2
Using ruby_dep 1.5.0
Using listen 3.1.5
Using jekyll-watch 2.1.2
Using kramdown 1.17.0
Using liquid 4.0.1
Using mercenary 0.3.6
Using pathutil 0.16.2
Using rouge 3.3.0
Using safe_yaml 1.0.4
Using jekyll 3.8.5
Using mytheme 0.1.0 from source at `../../../Gems`
Using tzinfo 2.0.0
Using tzinfo-data 1.2018.9
Bundle complete! 5 Gemfile dependencies, 31 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.

但是不幸的是,当我生成网站时,找不到主题布局。

如果我手动安装主题

gem install mytheme-0.1.0.gem

一切正常。

知道为什么吗?

0 个答案:

没有答案