1. 07 Jan, 2016 1 commit
  2. 06 Jan, 2016 2 commits
  3. 16 Nov, 2015 2 commits
  4. 15 Nov, 2015 2 commits
  5. 12 Nov, 2015 1 commit
  6. 05 Nov, 2015 1 commit
  7. 28 Oct, 2015 1 commit
  8. 03 Oct, 2015 1 commit
  9. 26 Sep, 2015 1 commit
  10. 16 Sep, 2015 1 commit
  11. 15 Sep, 2015 2 commits
  12. 26 Aug, 2015 2 commits
  13. 04 Aug, 2015 1 commit
  14. 03 Aug, 2015 1 commit
  15. 14 Jul, 2015 1 commit
  16. 12 Jul, 2015 2 commits
  17. 01 Jul, 2015 3 commits
  18. 30 Jun, 2015 1 commit
  19. 22 Jun, 2015 1 commit
  20. 21 Jun, 2015 2 commits
  21. 18 Jun, 2015 2 commits
  22. 17 Jun, 2015 3 commits
  23. 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
  24. 08 Jun, 2015 1 commit
  25. 29 May, 2015 1 commit
  26. 18 May, 2015 2 commits
  27. 11 May, 2015 1 commit