Skip to content

Instantly share code, notes, and snippets.

@sdlong
Last active August 29, 2015 14:22
Show Gist options
  • Save sdlong/a3c668daf5e1ec92f3be to your computer and use it in GitHub Desktop.
Save sdlong/a3c668daf5e1ec92f3be to your computer and use it in GitHub Desktop.
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