Rails5.0.0.1とBootstrap4(その1)
OIAX社のRails5.0 初級①が出版されていたので、Kindleで購入して読んでみた。
(環境)
Windows8.1
VirtuaBox
Vagrant
Rails 5.0.0.1 (2016/8/11から、Rails 5.0.0.1にupdateされたらしい。)
(1)Railsのインストール
http://twosquirrel.mints.ne.jp/?p=7381
にしたがってやってみた。Railsのインストールのところで、
[sourcecode language="bash" padlinenumbers="true"]
gem install rails –version=5.0.0.1
gem install bundler
[/sourcecode]
とした。
Gemfileの # therubyracer … の#を消去して、bundle install
rails s -b 0.0.0.0
(2) ルーティング
(3)hello_controller.rbの作成
app/controllers/ フォルダの下に、hello_controller.rb を作成
(4)app/views/ フォルダの下に、hello フォルダを作成し、helloフォルダの中に、show.html.erb ファイルを作成
(5)TeraTermで、rails s -b .0.0.0.0
ブラウザで、http://localhost:3000/hello を開く
(6)ページのソースを表示すると、以下のようになっている。
まだBootstrapを設定していないが、続きは今度、、、
ディスカッション
コメント一覧
まだ、コメントがありません