質問編集履歴

2

コード追記

2020/08/04 02:04

投稿

_tonton_
_tonton_

スコア4

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,139 @@
33
33
  - ファイルのキャッシュを消す方法を試しました。
34
34
 
35
35
    「git rm -r --cached .」
36
+
37
+ - Gemfileは以下の通りです
38
+
39
+ ```ruby
40
+
41
+ source 'https://rubygems.org'
42
+
43
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
+
45
+
46
+
47
+ ruby '2.6.5'
48
+
49
+
50
+
51
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
52
+
53
+ gem 'rails', '~> 6.0.0'
54
+
55
+ # Use Puma as the app server
56
+
57
+ gem 'puma', '~> 4.1'
58
+
59
+ # Use SCSS for stylesheets
60
+
61
+ gem 'sass-rails', '>= 6'
62
+
63
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
64
+
65
+ gem 'webpacker', '~> 4.0'
66
+
67
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
68
+
69
+ gem 'turbolinks', '~> 5'
70
+
71
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
72
+
73
+ gem 'jbuilder', '~> 2.7'
74
+
75
+ # Use Redis adapter to run Action Cable in production
76
+
77
+ # gem 'redis', '~> 4.0'
78
+
79
+ # Use Active Model has_secure_password
80
+
81
+ # gem 'bcrypt', '~> 3.1.7'
82
+
83
+
84
+
85
+ # Use Active Storage variant
86
+
87
+ # gem 'image_processing', '~> 1.2'
88
+
89
+
90
+
91
+ # Reduces boot times through caching; required in config/boot.rb
92
+
93
+ gem 'bootsnap', '>= 1.4.2', require: false
94
+
95
+
96
+
97
+ group :development, :test do
98
+
99
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
100
+
101
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
102
+
103
+ gem 'sqlite3'
104
+
105
+ end
106
+
107
+
108
+
109
+ group :development do
110
+
111
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
112
+
113
+ gem 'web-console', '>= 3.3.0'
114
+
115
+ gem 'listen', '~> 3.2'
116
+
117
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
118
+
119
+ gem 'spring'
120
+
121
+ gem 'spring-watcher-listen', '~> 2.0.0'
122
+
123
+ end
124
+
125
+
126
+
127
+ group :test do
128
+
129
+ # Adds support for Capybara system testing and selenium driver
130
+
131
+ gem 'capybara', '>= 2.15'
132
+
133
+ gem 'selenium-webdriver'
134
+
135
+ # Easy installation and use of web drivers to run system tests with browsers
136
+
137
+ gem 'webdrivers'
138
+
139
+ end
140
+
141
+
142
+
143
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
144
+
145
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
146
+
147
+ gem 'pry-rails'
148
+
149
+ gem 'haml-rails', '>=1.0', '<=2.0.1'
150
+
151
+ gem 'font-awesome-sass'
152
+
153
+ gem 'carrierwave'
154
+
155
+ gem 'mini_magick'
156
+
157
+ gem 'ancestry'
158
+
159
+ gem 'jquery-rails'
160
+
161
+ gem 'devise'
162
+
163
+
164
+
165
+ group :production do
166
+
167
+ gem 'pg'
168
+
169
+ end
170
+
171
+ ```

1

記載漏れ

2020/08/04 02:04

投稿

_tonton_
_tonton_

スコア4

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,8 @@
5
5
  HerokuへGit経由でデプロイしたのち、
6
6
 
7
7
  開発を進めたいのですが、ローカルサーバーが利用できません。
8
+
9
+ 本番環境へデプロイするとローカルは使えなくなりますか?
8
10
 
9
11
 
10
12