Właśnie rozpocząłem książkę ruby.railstutorial.org autorstwa Michaela Hartla i pracowałem nad pierwszym rozdziałem. Używam Mac OS X, Terminal i Sublime Text. Wszystko poszło zgodnie z planem, dopóki nie nadszedł czas na przetestowanie wdrożenia na Heroku. Mogę połączyć się z Heroku i uruchomić polecenie główne $ git push heroku
. Ale rozmieszczenie nie powiedzie:Wdrożenie Heroku nie powiodło się z powodu błędu gem sqlite3
Installing sqlite3 (1.3.5) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite-devel' and check your shared library search path (the
location where your sqlite3 shared library is located).
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
An error occurred while installing sqlite3 (1.3.5), and Bundler cannot continue.
Make sure that `gem install sqlite3 -v '1.3.5'` succeeds before bundling.
!
! Failed to install gems via Bundler.
!
! Detected sqlite3 gem which is not supported on Heroku.
! http://devcenter.heroku.com/articles/how-do-i-use-sqlite3-for-development
!
! Heroku push rejected, failed to compile Ruby/rails app
Oto moja Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development, :test do
gem 'sqlite3', '1.3.5'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.2.3'
end
gem 'jquery-rails', '2.0.2'
group :production do
gem 'pg', '0.12.2'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
mam sqlite3 przeznaczone na rozwój, a nie produkcji, więc pomyślałem Heroku po prostu zignorować to wszystko razem, ale to nie wydaje się być w tym przypadku.
Ponadto, gdy tworzę wiązkę Używam $ pakiet zainstalować --without produkcja
Wiem, że niektórzy ludzie sugerują, po prostu zainstalować i używać PG, ale naprawdę chcę, aby trzymać się z samouczka w miarę możliwości, zanim wyruszę i spróbuję innego podejścia.
Jestem trochę zagubiony w tej chwili i nie wiem, jak przejść dalej. Każda pomoc, którą możesz zapewnić, będzie najbardziej doceniona.
Dzięki
Wow, że pomoc ogniwo jest dużo bardziej pomocne niż kiedy uderzy ten problem ... – Chowlett
Śledź porady tego linku i użyć zamiast PostgreSQL. – sevenseacat
Sprawdź tę sekcję https://devcenter.heroku.com/articles/building-a-rails-3-application-with-memcache-addon#create-your-application – fankt