1. 12 3月, 2015 13 次提交
  2. 11 3月, 2015 14 次提交
  3. 10 3月, 2015 8 次提交
  4. 09 3月, 2015 5 次提交
    • R
      Merge pull request #19243 from yui-knk/fix/require · 094ad223
      Rafael Mendonça França 提交于
      Fix place of require 'rails_guides/markdown'
      094ad223
    • S
      Fix intermittent test failures · 503c2d41
      Sean Griffin 提交于
      The default value of `"pg_arrays"."tags"` is being changed to `[]` in
      one test, but the column information on the model isn't reset after it's
      changed back. As such, we think the default value is `[]` when in the
      database it's actually `nil`. That means any test which was assigning
      `[]` to a new record would have that key skipped with partial writes, as
      it hasn't changed from the default. However since the *actual* default
      value is `nil`, we get back values that the test doesn't expect, and it
      fails.
      503c2d41
    • A
      Merge pull request #19264 from y-yagi/plugins_guide · ba8ce398
      Arthur Nogueira Neves 提交于
      use public Module#include instead of send :include [ci skip]
      ba8ce398
    • Y
      71dcc40a
    • A
      Revert "Take DST into account when locating TimeZone from Numeric." · 34b27701
      Andrew White 提交于
      Reverting this as it's not the implementation that we would like it to be.
      This is being used inside of ActiveSUpport::TimeZone[] and it's unaware
      of the context in which to find the timezone period so the timezone found
      changes depending on whether DST is in effect for the current period.
      This means that `'2001-01-01'.in_time_zone(-9)` changes from winter/summer
      even though it's the same date that we're trying to convert.
      
      Since finding timezones by numeric offsets is a bit hit and miss we should
      introduce a new API for finding them which supplies the date context in
      which we want to search and we should probably also deprecate the finding
      of timezones via the [] method, though this needs further discussion.
      
      This reverts commit 2cc2fa36.
      34b27701