2023-12-16 10:55:45 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "* Show warning require and LoadError"
|
|
|
|
ruby test_warn_bundled_gems.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Show warning when bundled gems called as dependency"
|
|
|
|
ruby test_warn_dependency.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Show warning sub-feature like bigdecimal/util"
|
|
|
|
ruby test_warn_sub_feature.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Show warning dash gem like net/smtp"
|
|
|
|
ruby test_warn_dash_gem.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Show warning when bundle exec with ruby and script"
|
|
|
|
bundle exec ruby test_warn_bundle_exec.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Show warning when bundle exec with shebang's script"
|
|
|
|
bundle exec ./test_warn_bundle_exec_shebang.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
|
|
|
|
2024-04-08 10:20:15 +03:00
|
|
|
echo "* Show warning when bundle exec with -r option"
|
|
|
|
bundle exec ruby -rostruct -e ''
|
|
|
|
echo
|
|
|
|
|
2024-03-25 09:04:26 +03:00
|
|
|
echo "* Show warning with bootsnap"
|
|
|
|
ruby test_warn_bootsnap.rb
|
|
|
|
echo
|
|
|
|
|
2024-04-24 14:10:48 +03:00
|
|
|
echo "* Show warning with bootsnap for gem with native extension"
|
|
|
|
ruby test_warn_bootsnap_rubyarchdir_gem.rb
|
|
|
|
echo
|
|
|
|
|
2024-03-25 09:04:26 +03:00
|
|
|
echo "* Show warning with zeitwerk"
|
|
|
|
ruby test_warn_zeitwerk.rb
|
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
2024-03-25 07:31:19 +03:00
|
|
|
echo "* Don't show warning bundled gems on Gemfile"
|
|
|
|
ruby test_no_warn_dependency.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2024-03-25 06:45:30 +03:00
|
|
|
|
2023-12-16 10:55:45 +03:00
|
|
|
echo "* Don't show warning with net/smtp when net-smtp on Gemfile"
|
|
|
|
ruby test_no_warn_dash_gem.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2023-12-16 10:55:45 +03:00
|
|
|
|
|
|
|
echo "* Don't show warning bigdecimal/util when bigdecimal on Gemfile"
|
|
|
|
ruby test_no_warn_sub_feature.rb
|
2024-03-25 09:04:26 +03:00
|
|
|
echo
|
2024-08-02 17:40:41 +03:00
|
|
|
|
|
|
|
echo "* Show warning when warn is not the standard one in the current scope"
|
|
|
|
ruby test_warn_redefined.rb
|
|
|
|
echo
|
2024-08-08 10:23:49 +03:00
|
|
|
|
|
|
|
echo "* Show warning with bootsnap and some gem in Gemfile"
|
|
|
|
ruby test_warn_bootsnap_and_gem.rb
|
|
|
|
echo
|
2024-09-13 07:19:31 +03:00
|
|
|
|
|
|
|
echo "* Don't show warning for reline when using irb from standard library"
|
|
|
|
bundle exec ruby -rirb -e ''
|
|
|
|
echo
|