На "git pu sh heroku master" остановка развертывания на "remote: Building source" согласно изображению ниже.
Любое тело может мне помочь?
Мой файл gem:
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.7'
gem "font-awesome-rails"
gem "nested_form"
# To paginate
gem 'will_paginate', '~> 3.1.0'
# Jquery
gem 'jquery-rails'
# Autenticate user
gem 'devise'
#gem to mask the inputs
gem 'jquery_mask_rails', '~> 0.1.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.3'
# Use sqlite3 as the database for Active Record
group :development, :test do
gem 'sqlite3', '~> 1.4.1'
end
group :production do
gem 'pg'
end
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper'
end
gem 'wdm', '>= 0.1.0'
ruby '2.5.7'
В предыдущем развертывании я использовал версию ruby и rails, отличные от версии, в которой я пытаюсь развернуть , Это как-то связано с проблемой?