作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 gem 中的方法之一中添加一些自定义代码。在 Rails 2.3.8 中,我在 config/initializers 目录下添加了一个 .rb 文件,一切正常。
自从转移到 Rail3 后,以前的工作不再有效。我曾尝试在 config/initializers 下和/lib 下添加一个 mongoid_slug.rb 并在 application.rb 中 auto_load/lib 路径。两者都不起作用。
在 mongoid_slug.rb 里面我试过:
module Mongoid
module Slug
module ClassMethods
def find_unique_slug
#mycode
end
end
end
end
Mongoid::Slug::ClassMethods.module_eval do
def find_unique_slug
#mycode
end
end
最佳答案
这对我有用,
module Mongoid
module Slug
module ClassMethods
def find_unique_slug
#mycode
end
end
end
end
关于gem - 导轨 3 : How to override a method in a gem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5592720/
我是一名优秀的程序员,十分优秀!