Last active
August 29, 2015 14:22
-
-
Save sdlong/a3c668daf5e1ec92f3be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def xdd | |
puts "xdd" | |
end | |
# -*- encoding : utf-8 -*- | |
class PageView < ActiveRecord::Base | |
belongs_to :topic | |
delegate :category, to: :topic | |
delegate :board, to: :topic | |
has_one :hot_topic | |
end | |
# -*- encoding : utf-8 -*- | |
class PageView < ActiveRecord::Base | |
belongs_to :topic | |
delegate :category, to: :topic | |
delegate :board, to: :topic | |
has_one :hot_topic | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment