1. 08 12月, 2011 1 次提交
  2. 07 12月, 2011 1 次提交
    • P
      Allow layout fallback when using `layout` method · 18ceed20
      Prem Sichanugrist 提交于
      Rails will now use your default layout (such as "layouts/application") when you specify a layout with `:only` and `:except` condition, and those conditions fail.
      
      For example, consider this snippet:
      
          class CarsController
            layout 'single_car', :only => :show
          end
      
      Rails will use 'layouts/single_car' when a request comes in `:show` action, and use 'layouts/application' (or 'layouts/cars', if exists) when a request comes in for any other actions.
      18ceed20
  3. 06 12月, 2011 1 次提交
  4. 05 12月, 2011 1 次提交
  5. 02 12月, 2011 2 次提交
  6. 01 12月, 2011 1 次提交
  7. 30 11月, 2011 1 次提交
  8. 28 11月, 2011 1 次提交
  9. 22 11月, 2011 1 次提交
  10. 19 11月, 2011 1 次提交
  11. 18 11月, 2011 1 次提交
  12. 14 11月, 2011 2 次提交
  13. 06 11月, 2011 1 次提交
    • J
      Implement a workaround for a bug in ruby-1.9.3p0. · fc988115
      Jon Leighton 提交于
      The bug is that an error would be raised while attempting to convert a
      template from one encoding to another.
      
      Please see http://redmine.ruby-lang.org/issues/5564 for more details.
      
      The workaround is to load all conversions into memory ahead of time,
      and will only happen if the ruby version is *exactly* 1.9.3p0. The
      hope is obviously that the underlying problem will be resolved in
      the next patchlevel release of 1.9.3.
      fc988115
  14. 04 11月, 2011 1 次提交
    • J
      Convert CHANGELOGs to Markdown format. · 281272ad
      Jon Leighton 提交于
      Reasons:
      
       * Markdown reads well as plain text, but can also be formatted.
       * It will make it easier for people to read on the web as Github
         formats the Markdown nicely.
       * It will encourage a level of consistency when people are writing
         CHANGELOG entries.
      
      The script used to perform the conversion is at
      https://gist.github.com/1339263
      281272ad