aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/blog_post.rb
blob: d4b02eeaa7cb3d3ff1cff4a19797ac65d5598022 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Blog
  def self.use_relative_model_naming?
    true
  end

  class Post
    extend ActiveModel::Naming
  end
end