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