aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/blog_post.rb
blob: 2a6240fb04baa95b58b21081bfac4eb8a82ee08c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
module Blog
  def self.use_relative_model_naming?
    true
  end

  class Post
    extend ActiveModel::Naming
  end
end