1. 04 Aug, 2015 1 commit
  2. 03 Aug, 2015 1 commit
  3. 14 Jul, 2015 1 commit
  4. 12 Jul, 2015 2 commits
  5. 01 Jul, 2015 3 commits
  6. 30 Jun, 2015 1 commit
  7. 22 Jun, 2015 1 commit
  8. 21 Jun, 2015 2 commits
  9. 18 Jun, 2015 2 commits
  10. 17 Jun, 2015 3 commits
  11. 16 Jun, 2015 1 commit
    • Fix association class name for namespaced has one model lookups · 72287624
      Use association.klass.name instead of association.class_name to get the
      namespaced class name and therefore prevent:
      
      `Object.get_const(association_class_name)`
      
      from raising "uninitialized constant ParanoidHasOne"
      in the following situation:
      
      module Something
        def self.table_name_prefix
          "something_"
        end
      
        class ParanoidHasOne < ActiveRecord::Base
          acts_as_paranoid
          has_one :paranoid_belongs_to, dependent: :destroy
        end
      
        class ParanoidBelongsTo < ActiveRecord::Base
          acts_as_paranoid
          belongs_to :paranoid_has_one
        end
      end
      
      hasOne = Namespaced::ParanoidHasOne.create
      hasOne.destroy
      hasOne.restore(:recursive => true) # previously would explode
      Landon Wilkins committed
  12. 08 Jun, 2015 1 commit
  13. 29 May, 2015 1 commit
  14. 18 May, 2015 2 commits
  15. 11 May, 2015 1 commit
  16. 09 May, 2015 1 commit
  17. 28 Apr, 2015 1 commit
  18. 09 Apr, 2015 3 commits
  19. 08 Apr, 2015 1 commit
  20. 07 Apr, 2015 4 commits
  21. 23 Mar, 2015 1 commit
  22. 18 Mar, 2015 1 commit
  23. 18 Feb, 2015 3 commits
  24. 17 Feb, 2015 2 commits