我有這個類在我的libs文件夾如何包括從lib文件夾中的Rails類4
class AboutMe
include HTTParty
base_uri 'api.about.me'
def initialize(email)
@options = { :query => {:email => service, :extended => true } }
end
def search
self.class.get("/api/v2/json/users/search", @options)
end
end
而且我有一個模型
class Record < ActiveRecord::Base
def some_method
end
end
怎樣包括類是用在我的模型中?
當你說「包括「,你想在你的模型中混入def some_method,或者只是從模型中調用some_method? – roshiro
親愛的!這是最低限度的紅寶石知識.. –