Skip to content

Instantly share code, notes, and snippets.

@kunosu
Last active November 20, 2019 14:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunosu/32c06dd4e9a7d5745d2b51e6c1702a3e to your computer and use it in GitHub Desktop.
Save kunosu/32c06dd4e9a7d5745d2b51e6c1702a3e to your computer and use it in GitHub Desktop.
Rubyのmain部分のテンプレート
@echo off
cd /d %~pd0
ruby %~n0.rb
echo.
pause
# coding: utf-8
$DEBUG = false
#$DEBUG = true
BEGIN {
puts("#{__FILE__} start\n")
}
END {
puts("\nend...\n")
}
if $DEBUG
puts("デバッグモード")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment