9

私の頭はグーグルで揚げられており、コンピューターで頭をバタンと閉めているため、ブレインダンプです。どんな助けや手がかりも大歓迎です!

私は自分の宝石をrvmで管理しています。

$ ruby -v
ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.2.0]

$ rails -v
Rails 4.0.0.beta1

次に、まったく新しいアプリをゼロから作成したい場合

$ rails new brand_new_app
 create  
  create  README.rdoc
  ...
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.

$ cd brand_new_app

次に、git リポジトリを初期化し、作成したばかりのアプリを追加します。次に、heroku インスタンスを作成します

brand_new_app $ heroku create
    Git remote heroku added

次に、heroku にデプロイしようとしましたが、アクティブなサポート gem で失敗します。

brand_new_app $ git push heroku master
    Counting objects: 62, done.
    Delta compression using up to 4 threads.
    Compressing objects: 100% (50/50), done.
    Writing objects: 100% (62/62), 20.54 KiB, done.
    Total 62 (delta 2), reused 0 (delta 0)

    -----> Ruby/Rails app detected
    -----> Installing dependencies using Bundler version 1.3.2
   Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment
   Fetching gem metadata from https://rubygems.org/.........
   Fetching gem metadata from https://rubygems.org/..
   Installing rake (10.0.3)
   Installing i18n (0.6.4)
   Installing minitest (4.6.2)
   Installing multi_json (1.6.1)
   Installing atomic (1.0.1)
   Installing thread_safe (0.1.0)
   Installing tzinfo (0.3.37)
   Installing activesupport (4.0.0.beta1)
   Gem::InstallError: activesupport requires Ruby version >= 1.9.3.
   An error occurred while installing activesupport (4.0.0.beta1), and Bundler
   cannot continue.
   Make sure that `gem install activesupport -v '4.0.0.beta1'` succeeds before
   bundling.
     !
     !     Failed to install gems via Bundler.
     !
     !     Heroku push rejected, failed to compile Ruby/rails app

私はrvmを内破させ(idkの理由、主に私はイライラしていました)、可能な限りすべての場所をチェックしました。特別な設定をせずに Rails アプリを作成しました。これは通常のインストールです。誰かが私を正しい方向に導くヒントを持っている場合は、私に送ってください! ここまで読んでくれてありがとう!

4

1 に答える 1

18

heroku のドキュメントで説明されているように、Gemfile に ruby​​ の行を追加する必要があります。

Gemfileruby "2.0.0"の下に行を追加するだけです。source "https://rubygems.org"

https://blog.heroku.com/archives/2012/11/5/ruby-2-preview-on-heroku

私はこれを試しましたが、これはherokuで機能します。どうやら Rails 4 は異なる Ruby バージョンと互換性がありません。彼らはここで次のように言っているので、これはちょっと奇妙です:

Ruby 2.0 は、Rails 4.0 で使用するのに推奨される Ruby です。

http://weblog.rubyonrails.org/2013/2/25/Rails-4-0-beta1/

明らかに好ましい、手段が必要です。

お役に立てれば

于 2013-03-13T12:28:37.673 に答える