1. 29 5月, 2016 3 次提交
  2. 28 5月, 2016 4 次提交
  3. 25 5月, 2016 3 次提交
  4. 24 5月, 2016 1 次提交
    • E
      Use RAILS_MAX_THREADS as pool size on all adapters · 1bb7615c
      Eugene Kenny 提交于
      When RAILS_MAX_THREADS is set, the postgresql adapter uses it as the
      connection pool size, so that there are always enough connections
      available to serve Action Cable requests.
      
      The same logic applies when using any other adapter.
      1bb7615c
  5. 23 5月, 2016 1 次提交
  6. 22 5月, 2016 1 次提交
  7. 21 5月, 2016 1 次提交
  8. 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
  9. 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
  10. 15 5月, 2016 1 次提交
  11. 10 5月, 2016 2 次提交
  12. 07 5月, 2016 2 次提交
  13. 05 5月, 2016 1 次提交
  14. 28 4月, 2016 1 次提交
  15. 25 4月, 2016 3 次提交
  16. 24 4月, 2016 2 次提交
  17. 23 4月, 2016 2 次提交
  18. 22 4月, 2016 1 次提交
  19. 21 4月, 2016 1 次提交
  20. 20 4月, 2016 2 次提交
  21. 19 4月, 2016 1 次提交
  22. 18 4月, 2016 2 次提交
  23. 16 4月, 2016 1 次提交
  24. 13 4月, 2016 1 次提交
  25. 12 4月, 2016 1 次提交
    • X
      edit pass over the RDoc of Rails::Railtie [ci skip] · b5f99550
      Xavier Noria 提交于
      The pass touches a few minor things.
      
      One important aspect is that the wording treats "railtie" as a
      regular noun. This is so because Railtie is a constant and
      generally the text refers to "classes that act as railties",
      which is different.
      
      Railties are so fundamental in Rails that deserve a noun,
      like engine, class, array, application, etc. They have a
      meaning per se, beyond constants.
      
      Also, make clear an extension's railtie does not need to
      be called "Railtie" or have "Railtie" in their class name.
      b5f99550