mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
14 lines
156 B
Ruby
14 lines
156 B
Ruby
module Blog
|
|
def self._railtie
|
|
Object.new
|
|
end
|
|
|
|
def self.table_name_prefix
|
|
"blog_"
|
|
end
|
|
|
|
class Post
|
|
extend ActiveModel::Naming
|
|
end
|
|
end
|