1. 29 5月, 2016 3 次提交
  2. 28 5月, 2016 1 次提交
  3. 21 5月, 2016 1 次提交
  4. 18 5月, 2016 1 次提交
    • J
      `md5` --> `MD5` · 9cd790d7
      Jon Moss 提交于
      Sorry, I missed a few places in my last PR. This should be the last of
      'em 😬
      9cd790d7
  5. 17 5月, 2016 1 次提交
    • P
      Cable: Generate .js or .coffee files while generating channel as per the... · 63ac6255
      Prathamesh Sonpatki 提交于
      Cable: Generate .js or .coffee files while generating channel as per the javascript engine of the application
      
      - Now we will detect what javascript engine user is using and based on
        that we will generate either `.js` or `.coffee` version of the channel
        file.
      - This also needs a change in coffee-rails to override the `js_template`
        method. Related PR https://github.com/rails/coffee-rails/pull/72.
      - Currently coffee-rails gem sets
        `config.app_generators.javascript_engine` to `:coffee` and using this
        information we override the `js_template` to set the extension as
        `.coffee` in coffee-rails gem.
      - Using this approach, we can keep the `channel.js` and `channel.coffee`
        files in the Rails repository itself.
      - Additionally the `js_template` method can act as public interface for
        coffee-rails gem to hook into and change the extension to `.coffee`
        without maintaining the actual asset files.
      
      [Prathamesh Sonpatki, Matthew Draper]
      63ac6255
  6. 07 5月, 2016 1 次提交
  7. 05 5月, 2016 1 次提交
  8. 25 4月, 2016 2 次提交
  9. 24 4月, 2016 1 次提交
  10. 23 4月, 2016 2 次提交
  11. 22 4月, 2016 1 次提交
  12. 19 4月, 2016 1 次提交
  13. 18 4月, 2016 1 次提交
  14. 16 4月, 2016 1 次提交
  15. 13 4月, 2016 1 次提交
  16. 10 4月, 2016 1 次提交
  17. 08 4月, 2016 1 次提交
  18. 30 3月, 2016 1 次提交
    • P
      Fix rails restart issue with Puma · 9d87ce34
      Prathamesh Sonpatki 提交于
      - We need to pass the restart command to Puma so that it will use it
        while restarting the server.
      - Also made sure that all the options passed by user while starting
        the server are used in the generated restart command so that they will
        be used while restarting the server.
      - Besides that we need to remove the server.pid file for the previous running
        server because otherwise Rack complains about it's presence.
      - We don't care if the server.pid file does not exist. We only want to delete
        it if it exists.
      - This also requires some changes on Puma side which are being tracked
        here - https://github.com/puma/puma/pull/936.
      - Fixes #23910.
      9d87ce34
  19. 25 3月, 2016 1 次提交
  20. 22 3月, 2016 3 次提交
  21. 21 3月, 2016 1 次提交
    • Y
      changed default value of `caching` option to `nil` · 173b524c
      yuuji.yaginuma 提交于
      The default is that's false, caching even if you do not specify the caching option is determined not to use,
      and `tmp/caching-dev.txt` will be deleted.
      If it is this, regardless of whether or not there is `tmp/caching-dev.txt`, be sure to order would be necessary to specify the caching option,
      I think that in than good to so as not to do anything by default.
      173b524c
  22. 20 3月, 2016 1 次提交
    • J
      Fix request.reset_session for API controllers · 6c6a2217
      Jon Moss 提交于
      Due to that `ActionDispatch::Flash` (the flash API's middleware) is not
      included for API controllers, the `request.reset_session` method, which
      relies on there being a `flash=` method which is in fact defined by the
      middleware, was previously breaking. Similarly to how
      add46482 created a method to be
      overridden by the flash middleware in order to ensure non-breakage, this
      is how flashes are now reset.
      
      Fixes #24222
      6c6a2217
  23. 12 3月, 2016 2 次提交
  24. 09 3月, 2016 2 次提交
  25. 08 3月, 2016 2 次提交
    • G
      Fix the tests after e5940003 · 61a51a5e
      Genadi Samokovarov 提交于
      61a51a5e
    • G
      Drop the explicit version requirements for web-console · e5940003
      Genadi Samokovarov 提交于
      Between major versions 2 and 3, we hit a bug. It's fixed in version 3,
      however, the explicit 2.x requirement of `~> '2.0'` will prevent people
      from getting the fix with `bundle update` and they would have to
      explicitly set the constraint to `~> '3.0'`.
      
      For more information see: rails/web-console#178.
      
      I propose we drop the explicit version constraints in the Gemfile. Web
      Console has been relatively stable for the past couple of years, and I
      don't anticipate any major alterations, like we saw between major
      versions 1 and 2.
      e5940003
  26. 06 3月, 2016 1 次提交
  27. 05 3月, 2016 1 次提交
  28. 04 3月, 2016 3 次提交
  29. 03 3月, 2016 1 次提交