1. 17 8月, 2012 1 次提交
  2. 15 8月, 2012 1 次提交
  3. 14 8月, 2012 2 次提交
  4. 12 8月, 2012 1 次提交
  5. 11 8月, 2012 2 次提交
  6. 09 8月, 2012 1 次提交
  7. 08 8月, 2012 2 次提交
  8. 07 8月, 2012 2 次提交
  9. 06 8月, 2012 1 次提交
  10. 05 8月, 2012 1 次提交
  11. 04 8月, 2012 1 次提交
  12. 03 8月, 2012 1 次提交
  13. 30 7月, 2012 1 次提交
  14. 24 7月, 2012 1 次提交
  15. 22 7月, 2012 2 次提交
  16. 18 7月, 2012 1 次提交
  17. 09 7月, 2012 1 次提交
  18. 08 7月, 2012 1 次提交
  19. 07 7月, 2012 1 次提交
  20. 03 7月, 2012 1 次提交
  21. 01 7月, 2012 1 次提交
  22. 15 6月, 2012 1 次提交
  23. 12 6月, 2012 1 次提交
  24. 01 6月, 2012 4 次提交
  25. 31 5月, 2012 1 次提交
    • S
      accept a block in button_to helper · ab7a80ea
      Sergey Nartimov 提交于
      Make possible to use a block in button_to helper if button text is hard
      to fit into the name parameter, e.g.:
      
          <%= button_to [:make_happy, @user] do %>
            Make happy <strong><%= @user.name %></strong>
          <% end %>
          # => "<form method="post" action="/users/1/make_happy" class="button_to">
          #      <div>
          #        <button type="submit">
          #          Make happy <strong>Name</strong>
          #        </button>
          #      </div>
          #    </form>"
      ab7a80ea
  26. 28 5月, 2012 1 次提交
    • P
      Fix sorting of helpers from different paths · e4aaac13
      Piotr Sarnacki 提交于
      When more than one directory for helpers is provided to a controller, it
      should preserver the order of directories. Given 2 paths:
      
          MyController.helpers_paths = ["dir1/helpers", "dir2/helpers"]
      
      helpers from dir1 should be loaded first. Before this commit, all
      helpers were mixed and then sorted alphabetically, which essentially
      would require to rename helpers to get desired order.
      
      This is a problem especially for engines, where you would like to be
      able to predict accurately which engine helpers will load first.
      
      (closes #6496)
      e4aaac13
  27. 27 5月, 2012 2 次提交
  28. 22 5月, 2012 2 次提交
  29. 21 5月, 2012 2 次提交