Я разрабатываю тему jekyll в файле gem .../Gems/mytheme-0.1.0.gem
Я хочу установить его (и другие) с bundle install
, для этого у меня есть
Gemfile сследующее содержимое
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
все работает хорошо.
Есть идеи почему?