ruto on Nostr: TIL: ...
TIL: Rubyでちょっとしたスクリプト書くのにGemfile書くのめんどくさいな、1ファイルで済ませる方法があればいいのに、と思ったらあった。
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html
require 'bundler/inline'して、gemfile do source 'https://rubygems.org';; gem 'hoge' endって書けばいいらしい。
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html
require 'bundler/inline'して、gemfile do source 'https://rubygems.org';; gem 'hoge' endって書けばいいらしい。