0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

簡単カレンダー

Posted at

#はじめに
 少し蛇足で、アプリにカレンダー機能を付けました。その流れを紹介します。まだ、使い物になるカレンダーではないので、もう少し調整していこうと思います。

##導入の流れ

  1. Gemを記述
  2. インストール
  3. CSS記述
  4. 表示
  5. (ビューを生成)

##1. Gemを記述

Gemfile
gem "simple_calendar", "~> 2.0"

##2. インストール
カレントディレクトリが作成中のアプリケーションであることを確認して、

% bundle install

##3. CSS記述

*
 *= require simple_calendar これを記述
 *= require_tree .
 *= require_self
*/

##4. 表示


<%= month_calendar do |date| %>
  <%= date %>
<% end %>


↑最低限、こんな感じのカレンダーができます。

##5. (ビューを生成)


rails g simple_calendar:views

このコマンドで生成されるビューを編集すると、細かくビューをいじることができるみないです。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?