1. 17 3月, 2011 1 次提交
  2. 24 12月, 2010 2 次提交
  3. 16 12月, 2010 4 次提交
  4. 31 10月, 2010 1 次提交
  5. 20 10月, 2010 1 次提交
  6. 19 10月, 2010 4 次提交
  7. 14 10月, 2010 2 次提交
  8. 13 10月, 2010 1 次提交
  9. 03 10月, 2010 1 次提交
  10. 01 10月, 2010 1 次提交
    • J
      Prevent... · 14c4881f
      Jon Leighton 提交于
      Prevent test_has_many_through_a_has_many_through_association_on_through_reflection failing for me due to ordering of the results
      14c4881f
  11. 26 9月, 2010 1 次提交
  12. 14 8月, 2010 1 次提交
  13. 13 8月, 2010 1 次提交
  14. 14 7月, 2010 1 次提交
  15. 30 4月, 2010 1 次提交
  16. 09 3月, 2010 1 次提交
  17. 08 9月, 2009 1 次提交
  18. 10 8月, 2009 1 次提交
  19. 16 7月, 2009 1 次提交
  20. 21 4月, 2009 1 次提交
  21. 20 4月, 2009 1 次提交
  22. 02 12月, 2008 1 次提交
  23. 10 10月, 2008 1 次提交
  24. 11 9月, 2008 1 次提交
  25. 10 9月, 2008 1 次提交
  26. 17 8月, 2008 1 次提交
  27. 14 7月, 2008 1 次提交
    • D
      Add :accessible option to Associations for allowing mass assignments using... · e0750d6a
      David Dollar 提交于
      Add :accessible option to Associations for allowing mass assignments using hash. [#474 state:resolved]
      
      Allows nested Hashes (i.e. from nested forms) to hydrate the appropriate
      ActiveRecord models.
      
      class Post < ActiveRecord::Base
        belongs_to :author,   :accessible => true
        has_many   :comments, :accessible => true
      end
      
      post = Post.create({
        :title    => 'Accessible Attributes',
        :author   => { :name => 'David Dollar' },
        :comments => [
          { :body => 'First Post!' },
          { :body => 'Nested Hashes are great!' }
        ]
      })
      
      post.comments << { :body => 'Another Comment' }
      Signed-off-by: NPratik Naik <pratiknaik@gmail.com>
      e0750d6a
  28. 10 6月, 2008 1 次提交
  29. 12 5月, 2008 1 次提交
  30. 29 3月, 2008 1 次提交
  31. 24 3月, 2008 1 次提交
  32. 07 3月, 2008 1 次提交