teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

実行した処理を細かく記述

2016/05/16 05:25

投稿

hashibata
hashibata

スコア18

title CHANGED
File without changes
body CHANGED
@@ -18,16 +18,25 @@
18
18
  ```
19
19
 
20
20
  vi config/routes.rb
21
- + root :to => 'top#index'
22
21
 
22
+ ```ruby
23
+ Hello::Application.routes.draw do
24
+ root :to => 'top#index'
25
+ ```
26
+
23
27
  rm public/index.html
24
28
 
25
- rails server(画面にHelloが表示される)
29
+ rails server
26
30
 
31
+ アクセスすると画面にHelloが表示される
32
+
27
33
  ---
28
34
 
29
35
  vi Gemfile
36
+
37
+ ```ruby
30
38
  #gem 'sqlite3'
39
+ ```
31
40
 
32
41
  bundle update
33
42
  bundle install

1

sqlite3を無効にしたのを書き忘れていた

2016/05/16 05:25

投稿

hashibata
hashibata

スコア18

title CHANGED
File without changes
body CHANGED
@@ -26,6 +26,12 @@
26
26
 
27
27
  ---
28
28
 
29
+ vi Gemfile
30
+ #gem 'sqlite3'
31
+
32
+ bundle update
33
+ bundle install
34
+
29
35
  heroku login
30
36
  heroku create
31
37
  git init