質問編集履歴
1
gemfileを添付
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,9 +18,45 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
er
|
21
|
+
$ git push lolipop master
|
22
|
+
|
23
|
+
Enumerating objects: 92, done.
|
24
|
+
|
25
|
+
Counting objects: 100% (92/92), done.
|
26
|
+
|
27
|
+
Delta compression using up to 6 threads
|
28
|
+
|
29
|
+
Compressing objects: 100% (77/77), done.
|
30
|
+
|
31
|
+
Writing objects: 100% (92/92), 22.18 KiB | 3.17 MiB/s, done.
|
32
|
+
|
33
|
+
Total 92 (delta 5), reused 0 (delta 0)
|
34
|
+
|
35
|
+
remote: Run rails build process...
|
36
|
+
|
37
|
+
remote: [DEPRECATED] The `--deployment` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set deployment 'true'`, and stop using this flag
|
38
|
+
|
39
|
+
remote: [DEPRECATED] The `--path` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set path 'vendor/bundle'`, and stop using this flag
|
40
|
+
|
41
|
+
remote: [DEPRECATED] The `--without` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set without 'development,test'`, and stop using this flag
|
42
|
+
|
43
|
+
remote: Warning: the running version of Bundler (2.1.4) is older than the version that created the lockfile (2.2.8). We suggest you to upgrade to the version that created the lockfile by running `gem install bundler:2.2.8`.
|
44
|
+
|
45
|
+
remote: The dependency byebug (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for x86_64-darwin-20 but the dependency is only for ruby, x86-mingw32, x64-mingw32. To add those platforms to the bundle, run `bundle lock --add-platform ruby x86-mingw32 x64-mingw32`.
|
46
|
+
|
47
|
+
remote: The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for x86_64-darwin-20 but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
|
48
|
+
|
49
|
+
remote: Unable to find a spec satisfying byebug (>= 0) in the set. Perhaps the lockfile
|
50
|
+
|
51
|
+
remote: is corrupted?
|
52
|
+
|
53
|
+
remote: Build seems to be failed. Abort
|
54
|
+
|
55
|
+
To ssh://ssh-1.mc.lolipop.jp:42486/
|
56
|
+
|
57
|
+
! [remote rejected] master -> master (pre-receive hook declined)
|
58
|
+
|
59
|
+
error: failed to push some refs to 'ssh://eloquent-takachiho-2547@ssh-1.mc.lolipop.jp:42486/
|
24
60
|
|
25
61
|
```
|
26
62
|
|
@@ -32,44 +68,138 @@
|
|
32
68
|
|
33
69
|
```ここに言語名を入力
|
34
70
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
e
|
71
|
+
source 'https://rubygems.org'
|
72
|
+
|
73
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
ruby '2.6.6'
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
82
|
+
|
83
|
+
gem 'rails', '~> 5.2.3'
|
84
|
+
|
85
|
+
# Use sqlite3 as the database for Active Record
|
86
|
+
|
87
|
+
# gem 'sqlite3'
|
88
|
+
|
89
|
+
# Use Puma as the app server
|
90
|
+
|
91
|
+
gem 'puma', '~> 3.11'
|
92
|
+
|
93
|
+
# Use SCSS for stylesheets
|
94
|
+
|
95
|
+
gem 'sass-rails', '~> 5.0'
|
96
|
+
|
97
|
+
# Use Uglifier as compressor for JavaScript assets
|
98
|
+
|
99
|
+
gem 'uglifier', '>= 1.3.0'
|
100
|
+
|
101
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
102
|
+
|
103
|
+
# gem 'mini_racer', platforms: :ruby
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
# Use CoffeeScript for .coffee assets and views
|
108
|
+
|
109
|
+
gem 'coffee-rails', '~> 4.2'
|
110
|
+
|
111
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
112
|
+
|
113
|
+
gem 'turbolinks', '~> 5'
|
114
|
+
|
115
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
116
|
+
|
117
|
+
gem 'jbuilder', '~> 2.5'
|
118
|
+
|
119
|
+
# Use Redis adapter to run Action Cable in production
|
120
|
+
|
121
|
+
# gem 'redis', '~> 4.0'
|
122
|
+
|
123
|
+
# Use ActiveModel has_secure_password
|
124
|
+
|
125
|
+
# gem 'bcrypt', '~> 3.1.7'
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
# Use ActiveStorage variant
|
130
|
+
|
131
|
+
# gem 'mini_magick', '~> 4.8'
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
# Use Capistrano for deployment
|
136
|
+
|
137
|
+
# gem 'capistrano-rails', group: :development
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
# Reduces boot times through caching; required in config/boot.rb
|
142
|
+
|
143
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
group :development, :test do
|
148
|
+
|
149
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
150
|
+
|
151
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
152
|
+
|
153
|
+
gem 'sqlite3'
|
154
|
+
|
155
|
+
end
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
group :development do
|
160
|
+
|
161
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
162
|
+
|
163
|
+
gem 'web-console', '>= 3.3.0'
|
164
|
+
|
165
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
166
|
+
|
167
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
168
|
+
|
169
|
+
gem 'spring'
|
170
|
+
|
171
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
172
|
+
|
173
|
+
end
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
group :test do
|
178
|
+
|
179
|
+
# Adds support for Capybara system testing and selenium driver
|
180
|
+
|
181
|
+
gem 'capybara', '>= 2.15'
|
182
|
+
|
183
|
+
gem 'selenium-webdriver'
|
184
|
+
|
185
|
+
# Easy installation and use of chromedriver to run system tests with Chrome
|
186
|
+
|
187
|
+
gem 'chromedriver-helper'
|
188
|
+
|
189
|
+
end
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
194
|
+
|
195
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
group :production do
|
200
|
+
|
201
|
+
gem 'mysql2'
|
202
|
+
|
203
|
+
end
|
74
204
|
|
75
205
|
```
|