OS: Ubuntu 16, Rails 4, Ruby 2.1.2 error:
LoadError: incompatible library version - /home/user/.rvm/gems/ruby-2.1.2@recipe_box/gems/sqlite3-1.3.11/lib/sqlit
Need to use lower version of sqlite3 gem (1.3.10) instead v. 1.3.11 Before if needed uninstall all gems and write to Gemfile:
Gemfile
gem 'sqlite3', '~> 1.3', '>= 1.3.10'
and use $ bundle install
It's helps me