mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

bundle execするとbudled gemをrequireできなくなるのかしら…

$ ruby -e "puts RUBY_DESCRIPTION; require 'prime'"
ruby 3.1.0preview1 (2021-11-09 master 5a3b2e6141) [x86_64-linux]
$ bundle exec ruby -e "puts RUBY_DESCRIPTION; require 'prime'"
ruby 3.1.0preview1 (2021-11-09 master 5a3b2e6141) [x86_64-linux]
-e:1:in `require': cannot load such file -- prime (LoadError)
from -e:1:in `<main>'

3.0.3でもそのようだ

$ ruby -e "puts RUBY_DESCRIPTION; require 'rss'"
ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [x86_64-linux]
$ bundle exec ruby -e "puts RUBY_DESCRIPTION; require 'rss'"
ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [x86_64-linux]
-e:1:in `require': cannot load such file -- rss (LoadError)
from -e:1:in `<main>'

そっか。Gemfile.lockに無いgemを読んじゃうと依存先のgemのバージョンの再現性が崩れるんだ。

というわけでruby-3.1.0-preview1でのMastodonがnet/popをrequireしようとして落ちるのはnet-popがdefault gemからbundled gamになったのが原因のようで

$ foreman run -e .env.production bin/tootctl accounts create zunda --email zundan@gmail.com --confirmed --role admin
:
/…/vendor/bundle/ruby/3.1.0/bundler/gems/bootsnap-5fedb52badb3/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:34:in `require': cannot load such file -- net/pop (LoadError)
from /…/vendor/bundle/ruby/3.1.0/gems/zeitwerk-2.5.1/lib/zeitwerk/kernel.rb:35:in `require'
from /…/vendor/bundle/ruby/3.1.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/pop3.rb:36:in `<class:POP3>'
from /…/vendor/bundle/ruby/3.1.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/pop3.rb:35:in `<module:Mail>'
from /…/vendor/bundle/ruby/3.1.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/pop3.rb:4:in `<top (required)>'
from /…/vendor/bundle/ruby/3.1.0/bundler/gems/bootsnap-5fedb52badb3/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `require'
:

requireしてるのはmailというgemのようなのでした

$ find vendor/bundle/ruby/3.1.0/gems -name \*.rb | xargs grep -H net/pop
vendor/bundle/ruby/3.1.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/pop3.rb: require 'net/pop' unless defined?(Net::POP)

うりゃ

$ git diff Gemfile
diff --git a/Gemfile b/Gemfile
index f0f2863de..13a8d764b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -12,6 +12,8 @@ gem 'sprockets', '~> 3.7.2'
gem 'thor', '~> 1.1'
gem 'rack', '~> 2.2.3'

+gem 'mail', git: 'https:// github.com/Shopify/mail.git', branch: 'net-smtp-dependency'
+
gem 'hamlit-rails', '~> 0.2'
gem 'pg', '~> 1.2'
gem 'makara', '~> 0.5'

zunda

とりゃ

$ foreman run -e .env.production bin/tootctl accounts create zunda --email zundan@gmail.com --confirmed --role admin
warning: parser/current is loading parser/ruby31, which recognizes
warning: 3.1.0-dev-compliant syntax, but you are running 3.1.0.
warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri.
OK
New password: パスワード

やったあ!!

GitHubGitHub - whitequark/parser: A Ruby parser.A Ruby parser. Contribute to whitequark/parser development by creating an account on GitHub.

Herokuでもruby-3.1.0-preview1で動いたあ!!

ホームタイムラインに自分のトゥートが現われないんじゃがー

$ heroku run bash
~ $ tootctl feeds build
1/1 |===========================================================| Time: 00:00:00
Regenerated feeds for 1 accounts

でなおっちった