Note that there are some explanatory texts on larger screens.

plurals
  1. POI cannot install the SQLite3 Gem in my bundle for rails (I can install it as a gem, but not in my gemfile)?
    primarykey
    data
    text
    <p>I have been going through a lot of trouble trying to get the SQLite gem working in my Rails project.</p> <p>After a lot of looking, I found a tutorial to help fix my problem, at least, I though it would fix my problem. It let me actually install the gem, which really didn't help me much. When I put it in my gemfile, <code>bundle install</code> does one of three things:</p> <ol> <li>It completely ignores the gem.</li> <li>It runs into an error building the gem native extensions.</li> <li>Something else that I forgot to mention, because sometimes something random happens.</li> </ol> <p>Any help here is welcome. </p> <p>My Gemfile and Gemfile.lock: <a href="http://pastebin.com/h9g4S7YM" rel="nofollow noreferrer">http://pastebin.com/h9g4S7YM</a> (also show below):</p> <p>Gemfile:</p> <pre><code>source 'https://rubygems.org' ruby '2.0.0' #ruby-gemset=railstutorial_rails_4_0 gem 'rails', '4.0.1' group :development, :test do gem 'sqlite3', "1.3.7" gem 'rspec-rails', '2.13.1' end group :test do gem 'selenium-webdriver', '2.35.1' gem 'capybara', '2.1.0' end gem 'sass-rails', '4.0.1' gem 'uglifier', '2.1.1' gem 'coffee-rails', '4.0.1' gem 'jquery-rails', '3.0.4' gem 'turbolinks', '1.1.1' gem 'jbuilder', '1.0.2' group :doc do gem 'sdoc', '0.3.20', require: false end group :production do gem 'pg', '0.15.1' gem 'rails_12factor', '0.0.2' end </code></pre> <p>Gemfile.lock:</p> <pre><code>GEM remote: https://rubygems.org/ specs: actionmailer (4.0.1) actionpack (= 4.0.1) mail (~&gt; 2.5.4) actionpack (4.0.1) activesupport (= 4.0.1) builder (~&gt; 3.1.0) erubis (~&gt; 2.7.0) rack (~&gt; 1.5.2) rack-test (~&gt; 0.6.2) activemodel (4.0.1) activesupport (= 4.0.1) builder (~&gt; 3.1.0) activerecord (4.0.1) activemodel (= 4.0.1) activerecord-deprecated_finders (~&gt; 1.0.2) activesupport (= 4.0.1) arel (~&gt; 4.0.0) activerecord-deprecated_finders (1.0.3) activesupport (4.0.1) i18n (~&gt; 0.6, &gt;= 0.6.4) minitest (~&gt; 4.2) multi_json (~&gt; 1.3) thread_safe (~&gt; 0.1) tzinfo (~&gt; 0.3.37) arel (4.0.1) atomic (1.1.14) builder (3.1.4) capybara (2.1.0) mime-types (&gt;= 1.16) nokogiri (&gt;= 1.3.3) rack (&gt;= 1.0.0) rack-test (&gt;= 0.5.4) xpath (~&gt; 2.0) childprocess (0.3.9) ffi (~&gt; 1.0, &gt;= 1.0.11) coffee-rails (4.0.1) coffee-script (&gt;= 2.2.0) railties (&gt;= 4.0.0, &lt; 5.0) coffee-script (2.2.0) coffee-script-source execjs coffee-script-source (1.6.3) diff-lcs (1.2.5) erubis (2.7.0) execjs (2.0.2) ffi (1.9.3-x86-mingw32) hike (1.2.3) i18n (0.6.5) jbuilder (1.0.2) activesupport (&gt;= 3.0.0) jquery-rails (3.0.4) railties (&gt;= 3.0, &lt; 5.0) thor (&gt;= 0.14, &lt; 2.0) json (1.8.1) mail (2.5.4) mime-types (~&gt; 1.16) treetop (~&gt; 1.4.8) mime-types (1.25.1) mini_portile (0.5.2) minitest (4.7.5) multi_json (1.8.2) nokogiri (1.6.0-x86-mingw32) mini_portile (~&gt; 0.5.0) pg (0.15.1-x86-mingw32) polyglot (0.3.3) rack (1.5.2) rack-test (0.6.2) rack (&gt;= 1.0) rails (4.0.1) actionmailer (= 4.0.1) actionpack (= 4.0.1) activerecord (= 4.0.1) activesupport (= 4.0.1) bundler (&gt;= 1.3.0, &lt; 2.0) railties (= 4.0.1) sprockets-rails (~&gt; 2.0.0) rails_12factor (0.0.2) rails_serve_static_assets rails_stdout_logging rails_serve_static_assets (0.0.1) rails_stdout_logging (0.0.3) railties (4.0.1) actionpack (= 4.0.1) activesupport (= 4.0.1) rake (&gt;= 0.8.7) thor (&gt;= 0.18.1, &lt; 2.0) rake (10.1.0) rdoc (3.12.2) json (~&gt; 1.4) rspec-core (2.13.1) rspec-expectations (2.13.0) diff-lcs (&gt;= 1.1.3, &lt; 2.0) rspec-mocks (2.13.1) rspec-rails (2.13.1) actionpack (&gt;= 3.0) activesupport (&gt;= 3.0) railties (&gt;= 3.0) rspec-core (~&gt; 2.13.0) rspec-expectations (~&gt; 2.13.0) rspec-mocks (~&gt; 2.13.0) rubyzip (0.9.9) sass (3.2.12) sass-rails (4.0.1) railties (&gt;= 4.0.0, &lt; 5.0) sass (&gt;= 3.1.10) sprockets-rails (~&gt; 2.0.0) sdoc (0.3.20) json (&gt;= 1.1.3) rdoc (~&gt; 3.10) selenium-webdriver (2.35.1) childprocess (&gt;= 0.2.5) multi_json (~&gt; 1.0) rubyzip (&lt; 1.0.0) websocket (~&gt; 1.0.4) sprockets (2.10.1) hike (~&gt; 1.2) multi_json (~&gt; 1.0) rack (~&gt; 1.0) tilt (~&gt; 1.1, != 1.3.0) sprockets-rails (2.0.1) actionpack (&gt;= 3.0) activesupport (&gt;= 3.0) sprockets (~&gt; 2.8) sqlite3 (1.3.7-x86-mingw32) thor (0.18.1) thread_safe (0.1.3) atomic tilt (1.4.1) treetop (1.4.15) polyglot polyglot (&gt;= 0.3.1) turbolinks (1.1.1) coffee-rails tzinfo (0.3.38) uglifier (2.1.1) execjs (&gt;= 0.3.0) multi_json (~&gt; 1.0, &gt;= 1.0.2) websocket (1.0.7) xpath (2.0.0) nokogiri (~&gt; 1.3) PLATFORMS x86-mingw32 DEPENDENCIES capybara (= 2.1.0) coffee-rails (= 4.0.1) jbuilder (= 1.0.2) jquery-rails (= 3.0.4) pg (= 0.15.1) rails (= 4.0.1) rails_12factor (= 0.0.2) rspec-rails (= 2.13.1) sass-rails (= 4.0.1) sdoc (= 0.3.20) selenium-webdriver (= 2.35.1) sqlite3 (= 1.3.7) turbolinks (= 1.1.1) uglifier (= 2.1.1) </code></pre> <p>A Screenshot of what happens (usually) after bundle install, and what the actual error is: <a href="https://imgur.com/G7tFl4W" rel="nofollow noreferrer">http://imgur.com/G7tFl4W</a> (also shown below)</p> <p><img src="https://i.stack.imgur.com/esE7b.png" alt="enter image description here"></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload