ruby on rails 4 - error : gem install sqlite3 -v '1.3.11'` succeeds before bundling -


when tryed deploying rails application, log said error below.

ebug [4b7b573d]     error occurred while installing sqlite3 (1.3.11), , bundler cannot continue. make sure `gem install sqlite3 -v '1.3.11'` succeeds before bundling. cap aborted! sshkit::runner::executeerror: exception while executing [----]: bundle exit status: 5 bundle stdout: error occurred while installing sqlite3 (1.3.11), , bundler cannot continue. make sure `gem install sqlite3 -v '1.3.11'` succeeds before bundling. bundle stderr: nothing written  sshkit::command::failed: bundle exit status: 5 bundle stdout: error occurred while installing sqlite3 (1.3.11), , bundler cannot continue. make sure `gem install sqlite3 -v '1.3.11'` succeeds before bundling. bundle stderr: nothing written  tasks: top => deploy:updated => bundler:install (see full trace running task --trace) deploy has failed error: #<sshkit::runner::executeerror: exception while executing [------]: bundle exit status: 5 bundle stdout: error occurred while installing sqlite3 (1.3.11), , bundler cannot continue. make sure `gem install sqlite3 -v '1.3.11'` succeeds before bundling. bundle stderr: nothing written 

my gemfile

group :development, :test   gem 'sqlite3' end 

how can solved , why happen?

have tried adding config/deploy.rb, settings line:

set :bundle_without, [:development, :test] 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -