在过去的一天里,我一直在为此苦苦挣扎,这真让我发疯了!

作为学习练习,我决定将一些代码打包到Rails Gem中。该代码具有 Controller Action ,路线,模型和帮助器,因此我决定最适合创建Gem的方法是将其创建为Rails Engine。

除了一件事外,其他一切似乎都运作良好。当我尝试从Controller或Views(使用引擎的应用程序)引用模型时:

@su = Shortener::ShortenedUrl.generate("http://stackoverflow.com")

我收到以下错误:
uninitialized constant Shortener::ShortenerHelper::ShortenedUrl

这很奇怪,因为从项目控制台执行代码时不会发生错误。我认为这是由于我将所有代码放入“Shortener”命名空间/模块中而造成的。我这样做是为了避免在其他应用程序中使用时发生冲突。

代码文件hierachy如下所示:

这是有问题的重要文件的类/模块声明代码(删除了内胆)

应用程序/ Controller /缩短器/shortened_urls_controller
module Shortener
  class ShortenedUrlsController < ::ApplicationController

    # find the real link for the shortened link key and redirect
    def translate
      # convert the link...
    end
  end
end

应用/模型/缩短器/shortened_urls
module Shortener
  class ShortenedUrl < ActiveRecord::Base

    # a number of validations, methods etc

  end
end

app/helpers/shortener/shortener_helper
module Shortener::ShortenerHelper

  # generate a url from either a url string, or a shortened url object
  def shortened_url(url_object, user=nil)

    # some code to do generate a shortened url

  end

end

lib/shortener/engine.rb
require "rails/engine"
require "shortener"

module Shortener

  class ShortenerEngine < Rails::Engine

  end

end

lib/shortener.rb
require "active_support/dependencies"

module Shortener

  # Our host application root path
  # We set this when the engine is initialized
  mattr_accessor :app_root

  # Yield self on setup for nice config blocks
  def self.setup
    yield self
  end

end

# Require our engine
require "shortener/engine"

Shorter.gemspec
require File.expand_path("../lib/shortener/version", __FILE__)

# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
Gem::Specification.new do |s|
  s.name                      = "shortener"
  s.summary                   = "Shortener makes it easy to create shortened URLs for your rails application."
  s.description               = "Shortener makes it easy to create shortened URLs for your rails application."
  s.files                     = `git ls-files`.split("\n")
  s.version                   = Shortener::VERSION
  s.platform                  = Gem::Platform::RUBY
  s.authors                   = [ "James P. McGrath" ]
  s.email                     = [ "[email protected]" ]
  s.homepage                  = "http://jamespmcgrath.com/projects/shortener"
  s.rubyforge_project         = "shortener"
  s.required_rubygems_version = "> 1.3.6"
  s.add_dependency "activesupport" , ">= 3.0.7"
  s.add_dependency "rails"         , ">= 3.0.7"
  s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
end

我已经在GitHub上发布了引擎的全部代码:

https://github.com/jpmcgrath/shortener

注意:此引擎具有用于生成所需迁移文件的生成器。类型:
rails g shortener

我还创建了一个显示问题的Rails 3.1应用程序(查看项目 Controller 的第18行):

https://github.com/jpmcgrath/linky

有任何想法吗?我曾在网上搜寻过,但没有找到有关制作《引擎 gem 》的任何真正权威的指南。任何帮助者将不胜感激。

谢谢!

最佳答案

在引擎帮助程序(app/helpers/shortener/shortener_helper.rb)中,用ShortenedUrl替换两次出现的Shortener::ShortenedUrl

我一开始发现这个错误很奇怪,因为ruby应该在封闭模块中寻找常量。但是辅助程序包含在另一类中,这可能意味着常量名称解析环境与您在文件中看到的环境不同。

如果您想了解有关命名空间引擎及其行为的更多信息,可以查看this excellent answer

关于ruby-on-rails - 从Rails 3.1引擎访问模型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7268990/

10-15 09:13