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

質問編集履歴

2

追記

2020/08/19 08:54

投稿

totoga
totoga

スコア4

title CHANGED
File without changes
body CHANGED
@@ -40,6 +40,8 @@
40
40
  ## 追記
41
41
  2020/08/19/17:48
42
42
 
43
+ ちなみにDocker上で動かしています.
44
+
43
45
  ```
44
46
  source 'https://rubygems.org'
45
47
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }

1

Gemfileを追加しました

2020/08/19 08:53

投稿

totoga
totoga

スコア4

title CHANGED
File without changes
body CHANGED
@@ -35,4 +35,30 @@
35
35
  ```
36
36
  No template found for UsersController#index
37
37
  ```
38
- そもそもテンプレートを探しに行ってない?
38
+ そもそもテンプレートを探しに行ってない?
39
+
40
+ ## 追記
41
+ 2020/08/19/17:48
42
+
43
+ ```
44
+ source 'https://rubygems.org'
45
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
46
+
47
+ ruby '2.5.8'
48
+ gem 'rails', '~> 5.2.4', '>= 5.2.4.3'
49
+ gem 'pg', '>= 0.18', '< 2.0'
50
+ gem 'puma', '~> 3.11'
51
+ gem 'bootsnap', '>= 1.1.0', require: false
52
+ gem 'haml-rails'
53
+ group :development, :test do
54
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
55
+ end
56
+
57
+ group :development do
58
+ gem 'listen', '>= 3.0.5', '< 3.2'
59
+ gem 'spring'
60
+ gem 'spring-watcher-listen', '~> 2.0.0'
61
+ end
62
+
63
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
64
+ ```