前提・実現したいこと
Ruby on railsで作成したアプリケーションをHerokuでデプロイしたいです。
発生している問題
Herokuでデプロイできない。
エラーメッセージ
GithubからDeploy Branchすると以下のエラーメッセージが表示されます。
-----> Ruby app detected -----> Installing bundler 2.0.2 -----> Removing BUNDLED WITH version in the Gemfile.lock -----> Compiling Ruby/Rails -----> Using Ruby version: ruby-2.6.6 -----> Installing dependencies using bundler 2.0.2 Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment Your bundle only supports platforms [] but your local platforms are ["ruby", "x86_64-linux"], and there's no compatible match between those two lists. Bundler Output: Your bundle only supports platforms [] but your local platforms are ["ruby", "x86_64-linux"], and there's no compatible match between those two lists. ! ! Failed to install gems via Bundler. ! ! Push rejected, failed to compile Ruby app. ! Push failed
ソースコード
Gemfile
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.6.6' gem 'rails', '~> 5.2.4', '>= 5.2.4.2' gem 'pg', '>= 0.18', '< 2.0' gem 'puma', '~> 3.11' gem 'sass-rails', '~> 5.0' gem 'uglifier', '>= 1.3.0' gem 'duktape' gem 'coffee-rails', '~> 4.2' gem 'turbolinks', '~> 5' gem 'jbuilder', '~> 2.5' gem 'bcrypt' gem 'web-console', '>= 3.3.0' gem 'capybara', '>= 2.15' gem 'selenium-webdriver' gem 'webdrivers' gem "nokogiri", ">= 1.10.8" gem 'rails-i18n' gem 'bootstrap', '~> 4.1.1' gem 'jquery-ui-rails' gem 'jquery-rails', '~> 4.4'
試したこと
一回作り直してみましたがエラーがでました。
Gemfile.lockから「PLATFORMSx64-mingw32」の一文を削除しました。するとエラーメッセージがかなり短くなりました。
補足情報
Windows 10 home 64ビット
ruby 2.6.6
Ruby on rails 5.2.4
PostgreSQL 12.2
テキストエディタ Atom
失礼な点があるかもしれませんがどうぞ宜しくおねがい致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/18 06:04
2020/05/18 06:14 編集
退会済みユーザー
2020/05/18 06:22 編集