生年月日占いアプリ(平日課題5) - #2
Open
busitora wants to merge 5 commits into
Open
Conversation
|
LGTM! |
koooosuke
reviewed
Mar 14, 2019
| @@ -0,0 +1,21 @@ | |||
| class FortunetellingsController < ApplicationController | |||
| include FortunetellingsHelper, Common | |||
There was a problem hiding this comment.
include FortunetellingsHelper, Common
でFortunetellingsHelperとCommonのモジュールを使い分けた理由ってなにかあったら教えて下さい!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
課題詳細
アプリ名(ディレクトリ名)は
camp_weekday_task5です。コントローラとビューを作成して生年月日占いアプリを作成して下さい。
URLに指定した値(8桁の数値)を使用して生年月日から占いを行います。
URLは
/fortunetelling/までは固定で、それ以降をパラメータで受け取る必要があります。params[XXX]で受け取った値は文字列として認識されるので、to_iメソッドを使用して数値に変換してから計算する必要があります。コントローラ名は
fortunetellings、アクション名はshowで作成して下さい。受け入れ基準
8桁の生年月日からあなたの誕生日は1994年4月7日です。のように表示できること。
本日(例として2月24日)が誕生日の場合、あなたの誕生日は1994年2月24日です。今日があなたの誕生日です。のように表示できること。
生年月日からあなたの星座は牡羊座です。のように正しい星座を表示できること。
生年月日からあなたは24歳です。のように正しい年齢を表示できること。
今日のあなたの運勢は大吉です。のように以下の中からランダムで運勢を表示できること。
課題リンク
平日課題5:生年月日作成アプリ
close #1