1. 12 8月, 2017 12 次提交
  2. 11 8月, 2017 16 次提交
  3. 10 8月, 2017 9 次提交
  4. 09 8月, 2017 3 次提交
    • R
      Merge pull request #30161 from tjschuck/rdoc_code_format_fix · e5fb6ed6
      Robin Dupret 提交于
      Fix broken RDoc formatting
      e5fb6ed6
    • T
      Fix broken RDoc formatting · 114fdc45
      T.J. Schuck 提交于
      The `@` ivar format doesn’t work with RDoc's `+` code formatting; needs `<tt>`.
      
      [ci skip]
      114fdc45
    • B
      Fix random CI failure due to non-deterministic sorting order · 93c65ae4
      bogdanvlviv 提交于
      ```
      rails/activerecord$ bundle exec rake postgresql:test --verbose TESTOPTS="--seed=36062"
      
      Failure:
      AssociationsJoinModelTest#test_has_many_through_polymorphic_has_one
      [/home/travis/build/rails/rails/activerecord/test/cases/associations/join_model_test.rb:407]:
      --- expected
      +++ actual
      @@ -1 +1 @@
      -[
         #<Tagging id: 1, tag_id: 1, super_tag_id: 2, taggable_type: "Post", taggable_id: 1, comment: nil>,
         #<Tagging id: 2, tag_id: 1, super_tag_id: nil, taggable_type: "Post", taggable_id: 2, comment: nil>
       ]
      +#<ActiveRecord::Associations::CollectionProxy [
         #<Tagging id: 2, tag_id: 1, super_tag_id: nil, taggable_type: "Post", taggable_id: 2, comment: nil>,
         #<Tagging id: 1, tag_id: 1, super_tag_id: 2, taggable_type: "Post", taggable_id: 1, comment: nil>
       ]>
      ```
      93c65ae4