1. 14 Jul, 2015 1 commit
  2. 12 Jul, 2015 2 commits
  3. 01 Jul, 2015 3 commits
  4. 30 Jun, 2015 1 commit
  5. 22 Jun, 2015 1 commit
  6. 21 Jun, 2015 2 commits
  7. 18 Jun, 2015 2 commits
  8. 17 Jun, 2015 3 commits
  9. 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
  10. 08 Jun, 2015 1 commit
  11. 29 May, 2015 1 commit
  12. 18 May, 2015 2 commits
  13. 11 May, 2015 1 commit
  14. 09 May, 2015 1 commit
  15. 28 Apr, 2015 1 commit
  16. 09 Apr, 2015 3 commits
  17. 08 Apr, 2015 1 commit
  18. 07 Apr, 2015 4 commits
  19. 23 Mar, 2015 1 commit
  20. 18 Mar, 2015 1 commit
  21. 18 Feb, 2015 3 commits
  22. 17 Feb, 2015 4 commits