어떻게 호출 체인의 중간에 주석을 추가 할 수 있습니까?호출 체인 중간에 주석 추가
Tag.joins(:taggings).
# Comment 1
# Comment 2
where(...).
where(...).
where(...).
# And here
group(...).
order(...)
방법 .
점에서이 구조
Tag.joins(:taggings)
# Wanted to add comment here cause it's long
# and takes multiple lines
.where(...)
.where(...)
.where(...)
# And here
.group(...)
.order(...)
파서뿐만 아니라 (여러 줄) 주석 뒤에 명령문이 계속 나오지 않을 것으로 예상되는 프로그래머에게도 힌트입니다. – Stefan