1. ホーム
  2. ruby-on-rails

[解決済み] heroku push rejected, failed to compile Ruby/rails app

2022-02-04 23:12:26

質問

RoRは初めてで、アプリをアップロードして公開するのは初めてです。最初はホスティングの問題がありましたが、herokuで解決できるならherokuでカスタムドメインを使おうと決めました。 これはテストアプリではなく、railsを学ぶためのもので、私が所有するビジネスで使用するためにデプロイしたい実際のアプリです。

gem install sqlite3 -v 1.3.7'が成功したことを確認してからバンドルしてください。

Failed to install gems via Bundler

Heroku push rejected, failed to compile Ruby/rails app

To [email protected]:peaceful-chamber-6371.git
[remote rejected] master -> master <pre-receive hook declined>
error: failed to push some refs to '[email protected]:peaceful-chamber-6371.git

ジェムファイル

source 'https://rubygems.org'

gem 'rails', '3.2.12'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development, :test do
gem 'sqlite3'
end
group :production do
  gem 'pg'
end


# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
  gem 'twitter-bootstrap-rails'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'

# Use unicorn as the app server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'debugger'

解決方法は?

これを試してみてください。

取り除く Gemfile.lock ファイルを作成し bundle install であれば git add , git commitgit push .