質問編集履歴
1
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,10 +74,16 @@
|
|
74
74
|
|
75
75
|
```ruby
|
76
76
|
|
77
|
+
// calendar.rb
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
def set_start_month
|
82
|
+
|
77
|
-
start_month = Time.parse("%#{year}%"&"-"+"%#{month}%"+"-1").to_time.to_datetime
|
83
|
+
start_month = Time.parse("%#{year}%"&"-"+"%#{month}%"+"-1").to_time.to_datetime
|
84
|
+
|
85
|
+
end
|
78
86
|
|
79
87
|
```
|
80
88
|
|
81
|
-
|
82
|
-
|
83
|
-
ごめんなさい。下手なコードかと思います。
|
89
|
+
parse内の "-1" は月初の日にちを指定しようとしています。ごめんなさい。下手なコードかと思います。
|