1. 22 11月, 2012 1 次提交
    • G
      Allow setting a symbol as path in scope on routes · 0d3a9e8a
      Guillermo Iguaran 提交于
      Was surprising found that this example doesn't work:
      
        scope :api do
          resources :users
        end
      
      and the right form to use it is:
      
        scope 'api' do
          resources :users
        end
      
      I think this should work similary as `namespace` where both are allowed.
      These two are equivalent:
      
        namespace :api do
          resources :users
        end
      
        namespace 'api' do
          resources :user
        end
      0d3a9e8a
  2. 20 11月, 2012 2 次提交
  3. 16 11月, 2012 2 次提交
  4. 09 11月, 2012 1 次提交
  5. 03 11月, 2012 2 次提交
  6. 01 11月, 2012 1 次提交
  7. 31 10月, 2012 2 次提交
  8. 19 10月, 2012 1 次提交
  9. 18 10月, 2012 3 次提交
  10. 11 10月, 2012 2 次提交
  11. 07 10月, 2012 1 次提交
  12. 06 10月, 2012 1 次提交
  13. 05 10月, 2012 3 次提交
  14. 04 10月, 2012 1 次提交
  15. 02 10月, 2012 2 次提交
  16. 01 10月, 2012 3 次提交
  17. 30 9月, 2012 3 次提交
    • G
      Fix changelog entry about sprockets-rails · 59b8b82e
      Guillermo Iguaran 提交于
      59b8b82e
    • R
      Whitespaces [ci skip] · 623f2fbb
      Rafael Mendonça França 提交于
      623f2fbb
    • H
      `assert_template` no more passing with what ever string that matches. · 19dff78d
      Hugo Roque 提交于
      Given Im rendering an template `/layout/hello.html.erb`, assert_template was
      passing with any string that matches. This behavior allowed false passing like:
      
      	assert_template "layout"
      	assert_template "out/hello"
      
      Now the passing possibilities are:
      
      	assert_template "layout/hello"
      	assert_template "hello"
      
      fixing assert_template bug when template matches expected, but not ends with
      
      Cherry Pick Merge: Fixes issue #3849 assert_template false positive
      
      taking redundant test off
      
      prevening incorrect assert_template when rendering with repeated names in path
      
      updating CHANGELOG with bugfix: assert_template false passing
      19dff78d
  18. 26 9月, 2012 1 次提交
  19. 25 9月, 2012 3 次提交
  20. 23 9月, 2012 1 次提交
  21. 22 9月, 2012 1 次提交
  22. 21 9月, 2012 3 次提交