web-dev-qa-db-ja.com

そのようなファイルを読み込むことができません-heroku create --stack cedarの実行時にreadline(LoadError)

RailsアプリケーションをHerokuにデプロイして、次の手順に従ってテストします。

http://devcenter.heroku.com/articles/Rails3#prerequisites

実行しようとしているコマンドは次のとおりです。

heroku create --stack cedar

そして、私はこのエラーメッセージを受け取ります:

/home/sergio/.rvm/rubies/Ruby-1.9.3-p125/lib/Ruby/site_Ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- readline (LoadError)
    from /home/sergio/.rvm/rubies/Ruby-1.9.3-p125/lib/Ruby/site_Ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/lib/heroku/command/run.rb:1:in `<top (required)>'
    from /home/sergio/.rvm/rubies/Ruby-1.9.3-p125/lib/Ruby/site_Ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
    from /home/sergio/.rvm/rubies/Ruby-1.9.3-p125/lib/Ruby/site_Ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/lib/heroku/command.rb:14:in `block in load'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/lib/heroku/command.rb:13:in `each'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/lib/heroku/command.rb:13:in `load'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/lib/heroku/cli.rb:8:in `start'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/gems/heroku-2.20.1/bin/heroku:15:in `<top (required)>'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/bin/heroku:19:in `load'
    from /home/sergio/.rvm/gems/Ruby-1.9.3-p125/bin/heroku:19:in `<main>'

そして、これは問題のファイルの内容です:

#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

module Kernel

  if defined?(gem_original_require) then
    # Ruby ships with a custom_require, override its require
    remove_method :require
  else
    ##
    # The Kernel#require from before RubyGems was loaded.

    alias gem_original_require require
    private :gem_original_require
  end

  ##
  # When RubyGems is required, Kernel#require is replaced with our own which
  # is capable of loading gems on demand.
  #
  # When you call <tt>require 'x'</tt>, this is what happens:
  # * If the file can be loaded from the existing Ruby loadpath, it
  #   is.
  # * Otherwise, installed gems are searched for a file that matches.
  #   If it's found in gem 'y', that gem is activated (added to the
  #   loadpath).
  #
  # The normal <tt>require</tt> functionality of returning false if
  # that file has already been loaded is preserved.

  def require path
    if Gem.unresolved_deps.empty? then
      gem_original_require path
    else
      spec = Gem::Specification.find { |s|
        s.activated? and s.contains_requirable_file? path
      }

      unless spec then
        found_specs = Gem::Specification.find_in_unresolved path
        unless found_specs.empty? then
          found_specs = [found_specs.last]
        else
          found_specs = Gem::Specification.find_in_unresolved_tree path
        end

        found_specs.each do |found_spec|
          found_spec.activate
        end
      end

      return gem_original_require path
    end
  rescue LoadError => load_error
    if load_error.message.end_with?(path) and Gem.try_activate(path) then
      return gem_original_require(path)
    end

    raise load_error
  end

  private :require

end

Rails -sを使用してローカルでアプリケーションを実行できますが、Herokuに公開できないようです。

30

iltempoとburuの回答は私を助けてくれました。

Sudo apt-get install libreadline-dev

rvm remove 1.9.3

rvm install 1.9.3

Then add to your Gemfile:

gem 'rb-readline'
61
davidkovsky

私のために働いた:

gem install rb-readline
22
Itay Maman

このようなエラーは通常、rvm Rubyがreadline拡張なしでコンパイルされた場合に発生します(Rubyコンパイルの前にreadlineヘッダーがインストールされていない場合に発生します。以下を試してください:libreadline-devをインストールしてから、Rubyを再インストールします。

rvm remove 1.9.3 
rvm install 1.9.3
10
buru

それが私のために働いた!

gem 'rb-readline', "~> 0.5.0.pre.1", :require => false
8
Igor Escobar

このリンクはGoogle検索の最初のものであるため、トップアンサーによる混乱を解消します。

一番上の答えは、実際には2つの答えを1つに統合したものです。どちらもあなたの問題を自分で解決しますが、どちらにも長所と短所があります。

最初の方法は、libreadline-devをインストールし、Rubyを再コンパイルすることです。これにより、RubyはC readlineサポート付きでコンパイルされます。潜在的に高速ですが、別のC依存関係をRubyに追加し、独自のデメリットがあります(たとえば、 LinuxディストリビューションにGNU readlineにはより多くの機能がありますがLGPLライセンスに含まれています)が付属していることを確認できません。特定のプラットフォームでは動作しません(Windows)。

2番目の方法は、Gemfileに配置するか、グローバルにインストールすることにより、rb-readlineをインストールすることです(別のRubyバージョンに切り替えても同じ問題が発生する可能性があるため、お勧めしません繰り返しますが、これはすべてのプラットフォームで動作するPure-Ruby実装を持っていますが、Gemfileで指定する必要があり(これはそれほど問題にはなりません)、潜在的に遅いため、一部の人にとってはより良いです。それ以上の問題は見つかりません。

もちろん最終的な選択はあなた次第ですが、同じマシンで複数のプロジェクトまたは複数のRubyバージョンを実行している場合、libreadline-devまたはディストリビューションに必要なものをインストールします。ほとんどの場合、一度実行するだけで、新しくコンパイルされたすべてのRubieがそのまま使用できますが、この1つのプロジェクトだけを実行しようとしている場合は、「奇妙な」プラットフォーム(Windows)を使用してください。トーゴ。

5
d4rky

Rubyの依存関係をインストールする最も簡単な方法は、実行することです:

rvm remove 1.9.3

その後

rvm install 1.9.3

最後のコマンドが実際にRubyをインストールする前に、依存関係をインストールするように求められます。私の場合、私はこのヒントを得ました:

Sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison Subversion pkg-config

これは、インストールを続行する前に別のターミナルで実行する必要があります。

Ubuntuでrbenvを使用している場合

Sudo apt-get install libreadline-dev
CONFIGURE_OPTS="--with-readline-dir=/usr/include/readline" rbenv install 1.9.3-p125

http://vvv.tobiassjosten.net/Ruby/readline-in-Ruby-with-rbenv/ に書かれているとおり

4
s01ipsist

Readline gemのようなサウンドはアプリケーションで必要ですが、Gemfileで指定されていません。追加してみてください。

3
iltempo