I'm trying to move my Ruby Application to Heroku for the first time, first I updated my Ruby version to 2.4.1, I also moved my sqlite3 in development to have :
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]
gem 'sqlite3','~> 1.3.13'
end
And now that I can push my app, the app doesnt start and I have the following error "method_missing': undefined method `has_one_attached' for # (NoMethodError)" while running heroku run rails console. Could anybody help me to fix that ?