Actions
Bug #13975
closedstandard library になった bundler で bundle gem を実行できない
Description
https://github.com/ruby/ruby/pull/1710
Ruby 2.5.0 から bundler が standard library となるようですが、
現在の standard library として同梱されている bundler では必要なテンプレートファイルが不足しており、
bundle gem コマンドでの gem 作成が、本来発生しないはずのエラーで終了してしまいます。
~/s/github.com ❯❯❯ bundle gem test
The latest bundler is 1.16.0.pre.2, but you are currently running 1.15.4.
To update, run `gem install bundler --pre`
Creating gem 'test'...
create test/Gemfile
create test/lib/test.rb
create test/lib/test/version.rb
create test/test.gemspec
create test/Rakefile
Could not find "newgem/README.md.tt" in any of your source paths. Your current source paths are:
/Users/gyugyu/.rbenv/versions/2.5.0-dev/lib/ruby/2.5.0/bundler/templates
不足しているのは README.md.tt と .travis.yml.tt であり、 tools/rbinstall.rb 実行時にコピーの対象から除外されているようです。
README* を除外することは tools/rbinstall.rb に明示されていることと、dotfile はそもそも除外されるため、以下のように変更しました。
- README* は README.md.tt 以外現在存在しないため、除外項目から外す
- .travis.yml.tt は gitignore.tt と同じルールのファイル名 travis.yml.tt へと変更
Actions
Like0
Like0Like0