Rails - 错误无法找到文件

时间:2012-05-14 18:58:11

标签: ruby-on-rails ruby

我正在使用irb并尝试清理我下载的一些代码。

我正在运行:

require '/Users/alexgenadinik/projects/cmply/cmply-app/lib/app/social/linkedin/linkedin.rb'

它工作正常。该文件包含:

require File.join(File.expand_path("../",__FILE__),"init")
require 'oauth'

module LinkedIn
  puts "helllllooooo"

  class << self

    #logger.debug "....teeest"
    attr_accessor :token, :secret, :default_profile_fields

    # config/initializers/linkedin.rb (for instance)
    #
    # LinkedIn.configure do |config|
    #   config.token = 'consumer_token'
    #   config.secret = 'consumer_secret'
    #   config.default_profile_fields = ['education', 'positions']
    # end
    #
    # elsewhere
    #
    # client = LinkedIn::Client.new
    def configure
      yield self
      true
    end
  end

  #root_path = File.expand_path("../../../../../",__FILE__)

  autoload :Api,     File.join(LINKED_IN_LOAD_PATH,"linked_in/api.rb") #"linked_in/api"
  autoload :Client,  File.join(LINKED_IN_LOAD_PATH,"linked_in/client.rb") #"linked_in/client"
  autoload :Mash,    File.join(LINKED_IN_LOAD_PATH,"linked_in/mash.rb") #"linked_in/mash"
  autoload :Errors,  File.join(LINKED_IN_LOAD_PATH,"linked_in/errors.rb") #"linked_in/errors"
  autoload :Helpers, File.join(LINKED_IN_LOAD_PATH,"linked_in/helpers.rb") #"linked_in/helpers"
  autoload :Search,  File.join(LINKED_IN_LOAD_PATH,"linked_in/search.rb") #"linked_in/search"

end

但是当我尝试运行这样的命令时:

client = LinkedIn::Client.new('key', 'key')

我收到此错误:

LoadError: no such file to load -- linked_in/helpers/authorization
    from /Users/alexgenadinik/projects/cmply/cmply-app/lib/app/social/linkedin/linked_in/helpers/authorization.rb:4
    from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
    from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:36:in `require'
    from /Users/alexgenadinik/projects/cmply/cmply-app/lib/app/social/linkedin/linked_in/client.rb:2
    from (irb):2

所以它指向client.rb的第2行,它的开头如下:

require 'cgi'
require File.join(LINKED_IN_LOAD_PATH, "linked_in","helpers/authorization")

和authorization.rb的第4行,它是这样开始的:

module LinkedIn
  module Helpers

    module Authorization

那么,我应该从顶部读取错误消息,还是应该从底部开始阅读以查看错误首先出现在哪里?

非常感谢。我不确定为什么会出错。

1 个答案:

答案 0 :(得分:1)

您的文件所在的目录是“linkedin”,但您要求的目录是“linked_in”,您应该将实际目录的名称更改为linked_in,因为这与命名约定一致。

除此之外,我非常确定Rails将app下的所有目录添加到加载路径中。所以你应该只能说require 'linked_in/linked_in'(假设你改变了dir和文件名)然后你可以对所有的自动加载做同样的事情,并摆脱File.expand_path ...的东西。