2014-01-07 2 views
0

레일 3 앱을 레일 4 앱으로 마이그레이션하는 가장 좋은 방법은 아니지만 숨겨진 .git 파일을 제외한 모든 파일을 삭제하고 데이터베이스가없는 정적 웹 애플리케이션을 다시 빌드했습니다. 또는 단위 테스트 (rails new testapp -O --skip-bundle -T). 모든 것이 내 localhost에서 잘 작동합니다. 삭제 한 다음 bundle install을 실행하여 Gemfile.lock을 다시 작성합니다.heroku에 푸시하지 못했습니다

또한 config/application.rb에 config.serve_static_assets = true;을 추가했지만 "감지 된 레일은 static_assets을 제공하도록 설정되지 않았습니다."라는 경고가 계속 표시됩니다.

me-mbp:testapp me$ git push heroku master 
Fetching repository, done. 
Counting objects: 275, done. 
Delta compression using up to 4 threads. 
Compressing objects: 100% (197/197), done. 
Writing objects: 100% (211/211), 56.08 KiB | 0 bytes/s, done. 
Total 211 (delta 117), reused 3 (delta 0) 

-----> Ruby/Rails app detected 
-----> Detected Rails is not set to serve static_assets 
     Installing rails3_serve_static_assets... done 
-----> Configure Rails 3 to disable x-sendfile 
     Installing rails3_disable_x_sendfile... done 
-----> Configure Rails to log to stdout 
     Installing rails_log_stdout... done 
-----> Gemfile detected, running Bundler version 1.0.7 
     Unresolved dependencies detected; Installing... 
     Using --without development:test 
     /tmp/build_25e2c7af-af3f-4901-8e75-4d3e12337bf8/Gemfile:2:in `evaluate': undefined method `ruby' for #<Bundler::Dsl:0x000000025d3c78> (NoMethodError) 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/dsl.rb:7:in `instance_eval' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/dsl.rb:7:in `evaluate' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/definition.rb:17:in `build' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler.rb:128:in `definition' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/cli.rb:225:in `install' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/vendor/thor/task.rb:22:in `run' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/vendor/thor/invocation.rb:118:in `invoke_task' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/vendor/thor.rb:246:in `dispatch' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/lib/bundler/vendor/thor/base.rb:389:in `start' 
       from /usr/ruby1.9.2/lib/ruby/gems/1.9.1/gems/bundler-1.0.7/bin/bundle:13:in `<top (required)>' 
       from /usr/ruby1.9.2/bin/bundle:19:in `load' 
       from /usr/ruby1.9.2/bin/bundle:19:in `<main>' 
     FAILED: http://devcenter.heroku.com/articles/bundler 

!  Push failed: failed to install gems via Bundler 
!  If the problem persists, see http://help.heroku.com and provide Request ID 25e2c7af-af3f-4901-8e75-4d3e12337bf8. 

내 전체 Gemfile.lock 파일이 더 높은 버전 화를 보여줍니다에게 Heroku에 밀어하려고 할 때 내가 얻을 출력 여기

source 'https://rubygems.org' 
ruby '2.0.0' 
#ruby-gemset=railstutorial_rails_4_0 

gem 'rails', '4.0.2' 

group :development do 
    #gem 'sqlite3', '1.3.8' 
end 

group :production do 
    gem 'rails_12factor' # for heroku 
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 

된다 : 여기

는 내 Gemfile의 내용입니다 번들러 및 레일 :

GEM 
    remote: https://rubygems.org/ 
    specs: 
    actionmailer (4.0.2) 
     actionpack (= 4.0.2) 
     mail (~> 2.5.4) 
    actionpack (4.0.2) 
     activesupport (= 4.0.2) 
     builder (~> 3.1.0) 
     erubis (~> 2.7.0) 
     rack (~> 1.5.2) 
     rack-test (~> 0.6.2) 
    activemodel (4.0.2) 
     activesupport (= 4.0.2) 
     builder (~> 3.1.0) 
    activerecord (4.0.2) 
     activemodel (= 4.0.2) 
     activerecord-deprecated_finders (~> 1.0.2) 
     activesupport (= 4.0.2) 
     arel (~> 4.0.0) 
    activerecord-deprecated_finders (1.0.3) 
    activesupport (4.0.2) 
     i18n (~> 0.6, >= 0.6.4) 
     minitest (~> 4.2) 
     multi_json (~> 1.3) 
     thread_safe (~> 0.1) 
     tzinfo (~> 0.3.37) 
    arel (4.0.1) 
    atomic (1.1.14) 
    builder (3.1.4) 
    coffee-rails (4.0.1) 
     coffee-script (>= 2.2.0) 
     railties (>= 4.0.0, < 5.0) 
    coffee-script (2.2.0) 
     coffee-script-source 
     execjs 
    coffee-script-source (1.6.3) 
    erubis (2.7.0) 
    execjs (2.0.2) 
    hike (1.2.3) 
    i18n (0.6.9) 
    jbuilder (1.0.2) 
     activesupport (>= 3.0.0) 
    jquery-rails (3.0.4) 
     railties (>= 3.0, < 5.0) 
     thor (>= 0.14, < 2.0) 
    json (1.8.1) 
    mail (2.5.4) 
     mime-types (~> 1.16) 
     treetop (~> 1.4.8) 
    mime-types (1.25.1) 
    minitest (4.7.5) 
    multi_json (1.8.2) 
    polyglot (0.3.3) 
    rack (1.5.2) 
    rack-test (0.6.2) 
     rack (>= 1.0) 
    rails (4.0.2) 
     actionmailer (= 4.0.2) 
     actionpack (= 4.0.2) 
     activerecord (= 4.0.2) 
     activesupport (= 4.0.2) 
     bundler (>= 1.3.0, < 2.0) 
     railties (= 4.0.2) 
     sprockets-rails (~> 2.0.0) 
    rails_12factor (0.0.2) 
     rails_serve_static_assets 
     rails_stdout_logging 
    rails_serve_static_assets (0.0.2) 
    rails_stdout_logging (0.0.3) 
    railties (4.0.2) 
     actionpack (= 4.0.2) 
     activesupport (= 4.0.2) 
     rake (>= 0.8.7) 
     thor (>= 0.18.1, < 2.0) 
    rake (10.1.1) 
    rdoc (3.12.2) 
     json (~> 1.4) 
    sass (3.2.13) 
    sass-rails (4.0.1) 
     railties (>= 4.0.0, < 5.0) 
     sass (>= 3.1.10) 
     sprockets-rails (~> 2.0.0) 
    sdoc (0.3.20) 
     json (>= 1.1.3) 
     rdoc (~> 3.10) 
    sprockets (2.10.1) 
     hike (~> 1.2) 
     multi_json (~> 1.0) 
     rack (~> 1.0) 
     tilt (~> 1.1, != 1.3.0) 
    sprockets-rails (2.0.1) 
     actionpack (>= 3.0) 
     activesupport (>= 3.0) 
     sprockets (~> 2.8) 
    thor (0.18.1) 
    thread_safe (0.1.3) 
     atomic 
    tilt (1.4.1) 
    treetop (1.4.15) 
     polyglot 
     polyglot (>= 0.3.1) 
    turbolinks (1.1.1) 
     coffee-rails 
    tzinfo (0.3.38) 
    uglifier (2.1.1) 
     execjs (>= 0.3.0) 
     multi_json (~> 1.0, >= 1.0.2) 

PLATFORMS 
    ruby 

DEPENDENCIES 
    coffee-rails (= 4.0.1) 
    jbuilder (= 1.0.2) 
    jquery-rails (= 3.0.4) 
    rails (= 4.0.2) 
    rails_12factor 
    sass-rails (= 4.0.1) 
    sdoc (= 0.3.20) 
    turbolinks (= 1.1.1) 
    uglifier (= 2.1.1) 
+0

이것은 삼나무가 아니라 Heroku의 대나무 더미에도 있습니다. 지금 마이그레이션하려는 중입니다 ... – tarabyte

답변

0

이전 버전의 Bundler를 지원하지 않는 경우 오류가 발생합니다. Gemfile 안에 ruby 메쏘드.

이는 배포 출력

-----> Gemfile detected, running Bundler version 1.0.7 

삼나무 스택이 업데이트되므로, 난 당신이 대나무 스택을 사용하는 가정에 의해 확인된다. Cedar로 업그레이드해야합니다.

+0

예, 삼나무로 이주하려고합니다. 오직 나는 내 모든 CSS를 잃어 버렸다! http://stackoverflow.com/questions/20984600/cant-find-css-after-pushing-to-heroku – tarabyte

관련 문제