LoginSignup
4
4

More than 5 years have passed since last update.

Ruby の syntax sugar でハマる

Posted at

昨日の日付の Date object を取ろうとしてこうやった

Date.today - 1

けれど、Ruby はメソッドの () を省略して引数かけるので、おそらくこれはこう解釈されてる

Date.today(-1)

やりたいことはこう書けばいけた

Date.today() - 1

普段 Ruby 使ってないので細かいところでつまづいたのでメモ。

4
4
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4