質問編集履歴

4

エラーの点の改善

2020/05/18 09:02

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- 【rails】bundle installできない【Your bundle only supports platforms [] but your local platforms are】
1
+ 【rails】Herokuでデプロイできない
test CHANGED
@@ -1,32 +1,62 @@
1
1
  ### 前提・実現したいこと
2
2
 
3
- Ruby on railsで「bundle install」したいです。
3
+ Ruby on railsで作成したアプリケーションをHerokuでデプロイしたいです。
4
4
 
5
5
 
6
6
 
7
7
  ### 発生している問題
8
8
 
9
- bundle installできない
9
+ Herokuでデプロイできない
10
10
 
11
11
 
12
12
 
13
13
  ### エラーメッセージ
14
14
 
15
- bundle install
15
+ GithubからDeploy Branchすると以下のエラーメッセージが表示されます。
16
-
17
- すると
18
16
 
19
17
  ```
20
18
 
21
- Your bundle only supports platforms [] but your local platforms are ["ruby",
19
+ -----> Ruby app detected
22
20
 
21
+ -----> Installing bundler 2.0.2
22
+
23
+ -----> Removing BUNDLED WITH version in the Gemfile.lock
24
+
25
+ -----> Compiling Ruby/Rails
26
+
27
+ -----> Using Ruby version: ruby-2.6.6
28
+
29
+ -----> Installing dependencies using bundler 2.0.2
30
+
31
+ Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
32
+
33
+ Your bundle only supports platforms [] but your local platforms are ["ruby",
34
+
23
- "x64-mingw32"], and there's no compatible match between those two lists.
35
+ "x86_64-linux"], and there's no compatible match between those two lists.
36
+
37
+ Bundler Output: Your bundle only supports platforms [] but your local platforms are ["ruby",
38
+
39
+ "x86_64-linux"], and there's no compatible match between those two lists.
40
+
41
+ !
42
+
43
+ ! Failed to install gems via Bundler.
44
+
45
+ !
46
+
47
+ ! Push rejected, failed to compile Ruby app.
48
+
49
+ ! Push failed
50
+
51
+
24
52
 
25
53
  ```
26
54
 
27
55
 
28
56
 
29
57
  ### ソースコード
58
+
59
+ Gemfile
30
60
 
31
61
  ```
32
62
 
@@ -62,7 +92,7 @@
62
92
 
63
93
  gem 'selenium-webdriver'
64
94
 
65
- gem 'chromedriver-helper'
95
+ gem 'webdrivers'
66
96
 
67
97
  gem "nokogiri", ">= 1.10.8"
68
98
 
@@ -74,13 +104,19 @@
74
104
 
75
105
  gem 'jquery-rails', '~> 4.4'
76
106
 
107
+
108
+
77
109
  ```
78
110
 
79
111
 
80
112
 
81
- ### 自分なりの考え
113
+ ### 試したこと
82
114
 
115
+ 一回作り直してみましたがエラーがでました。
116
+
117
+
118
+
83
- Githubを見てGemfileを過去の状態に戻てみましたが同じエラーが出るので一旦作てみます
119
+ Gemfile.lockから「PLATFORMSx64-mingw32」の一文削除しました。するとエラーメッセージかな短くなりま
84
120
 
85
121
 
86
122
 

3

考えの追加

2020/05/18 09:02

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -78,6 +78,12 @@
78
78
 
79
79
 
80
80
 
81
+ ### 自分なりの考え
82
+
83
+ Githubを見てGemfileを過去の状態に戻してみましたが同じエラーが出るので一旦作り直してみます。
84
+
85
+
86
+
81
87
  ### 補足情報
82
88
 
83
89
  Windows 10 home 64ビット

2

修正したGemfileの内容の反映

2020/05/18 06:29

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -36,8 +36,6 @@
36
36
 
37
37
  ruby '2.6.6'
38
38
 
39
- gem 'win32_api'
40
-
41
39
  gem 'rails', '~> 5.2.4', '>= 5.2.4.2'
42
40
 
43
41
  gem 'pg', '>= 0.18', '< 2.0'
@@ -58,8 +56,6 @@
58
56
 
59
57
  gem 'bcrypt'
60
58
 
61
- gem 'bootsnap', '>= 1.1.0', require: false
62
-
63
59
  gem 'web-console', '>= 3.3.0'
64
60
 
65
61
  gem 'capybara', '>= 2.15'
@@ -77,10 +73,6 @@
77
73
  gem 'jquery-ui-rails'
78
74
 
79
75
  gem 'jquery-rails', '~> 4.4'
80
-
81
- gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
82
-
83
- gem 'x64-mingw32'
84
76
 
85
77
  ```
86
78
 

1

Gemfileのソースコードを追記

2020/05/18 06:22

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -26,6 +26,66 @@
26
26
 
27
27
 
28
28
 
29
+ ### ソースコード
30
+
31
+ ```
32
+
33
+ source 'https://rubygems.org'
34
+
35
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
36
+
37
+ ruby '2.6.6'
38
+
39
+ gem 'win32_api'
40
+
41
+ gem 'rails', '~> 5.2.4', '>= 5.2.4.2'
42
+
43
+ gem 'pg', '>= 0.18', '< 2.0'
44
+
45
+ gem 'puma', '~> 3.11'
46
+
47
+ gem 'sass-rails', '~> 5.0'
48
+
49
+ gem 'uglifier', '>= 1.3.0'
50
+
51
+ gem 'duktape'
52
+
53
+ gem 'coffee-rails', '~> 4.2'
54
+
55
+ gem 'turbolinks', '~> 5'
56
+
57
+ gem 'jbuilder', '~> 2.5'
58
+
59
+ gem 'bcrypt'
60
+
61
+ gem 'bootsnap', '>= 1.1.0', require: false
62
+
63
+ gem 'web-console', '>= 3.3.0'
64
+
65
+ gem 'capybara', '>= 2.15'
66
+
67
+ gem 'selenium-webdriver'
68
+
69
+ gem 'chromedriver-helper'
70
+
71
+ gem "nokogiri", ">= 1.10.8"
72
+
73
+ gem 'rails-i18n'
74
+
75
+ gem 'bootstrap', '~> 4.1.1'
76
+
77
+ gem 'jquery-ui-rails'
78
+
79
+ gem 'jquery-rails', '~> 4.4'
80
+
81
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
82
+
83
+ gem 'x64-mingw32'
84
+
85
+ ```
86
+
87
+
88
+
29
89
  ### 補足情報
30
90
 
31
91
  Windows 10 home 64ビット