1. 12 12月, 2015 1 次提交
  2. 09 12月, 2015 1 次提交
  3. 08 12月, 2015 1 次提交
  4. 03 12月, 2015 2 次提交
  5. 16 11月, 2015 1 次提交
    • K
      Tune whitespace in README.md · 6be2604a
      Kasper Timm Hansen 提交于
      * Realign `end` statements with the opening `class` statement.
      * Pad JavaScript objects with spaces to match Rails styleguide and for consistency with other examples.
      6be2604a
  6. 07 11月, 2015 3 次提交
  7. 05 11月, 2015 7 次提交
  8. 04 11月, 2015 1 次提交
  9. 24 10月, 2015 8 次提交
  10. 22 10月, 2015 2 次提交
  11. 20 10月, 2015 3 次提交
  12. 19 10月, 2015 2 次提交
  13. 17 10月, 2015 7 次提交
  14. 16 10月, 2015 1 次提交
    • L
      Speed up tests be calling EM.run_deferred_callbacks instead of setting a timer · 5efd82db
      Lachlan Sylvester 提交于
      The run_in_eventmachine test helper method is setting a 0.1 second timer to stop the event machine loop. This causes each test that requires an event machine loop to wait for 0.1 second regardless of how long the test takes to process.
      
      This changes that to call EM.run_deferred_callbacks, which immediatly process pending actions in the event loop and then is able to exit the event loop without doing any waiting.
      
      Before this change, running tests produced
      
          Finished in 2.957857s, 15.8899 runs/s, 27.7228 assertions/s.
      
      After, the tests get
      
          Finished in 0.065942s, 712.7514 runs/s, 1243.5237 assertions/s.
      5efd82db