aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/publisher
Commit message (Collapse)AuthorAgeFilesLines
* Fix has_and_belongs_to_many in a namespaced model pointing to a non ↵Rafael Mendonça França2014-06-191-0/+1
| | | | | | | | | | | | | | | namespaced model Now the following case will work fine class Tag < ActiveRecord::Base end class Publisher::Article < ActiveRecord::Base has_and_belongs_to_many :tags end Fixes #15761
* Fix how to compute class name on habtm namespaced.Kassio Borges2014-05-132-0/+6
Thank's for @laurocaetano for the help with tests. :smiley: Fixes #14709