-
Notifications
You must be signed in to change notification settings - Fork 8
SandBox
yowasou edited this page Aug 13, 2023
·
3 revisions
ここは自由にテストできるページです。
- Wiki書法の確認などにご利用ください。
- Home
- GitHub Home
puts("Hello, World")
def find(*args)
options = args.extract_options!
validate_find_options(options)
set_readonly_options!(options)
case args.first
when :first then find_initial(options)
when :last then find_last(options)
when :all then find_every(options)
else find_from _ids(args, options)
end
end