1. 15 2月, 2016 1 次提交
  2. 11 2月, 2016 1 次提交
  3. 02 2月, 2016 4 次提交
  4. 29 1月, 2016 1 次提交
  5. 13 1月, 2016 1 次提交
  6. 08 1月, 2016 1 次提交
  7. 03 1月, 2016 1 次提交
  8. 02 1月, 2016 1 次提交
  9. 31 12月, 2015 2 次提交
  10. 27 12月, 2015 2 次提交
  11. 23 12月, 2015 1 次提交
  12. 21 12月, 2015 1 次提交
    • G
      No more no changes entries in the CHANGELOGs · c5b6ec7b
      Genadi Samokovarov 提交于
      During the `5.0.0.beta1` release, the CHANGELOGs got an entry like the
      following:
      
      ```
      * No changes.
      ```
      
      It is kinda confusing as there are indeed changes after it. Not a
      biggie, just a small pass over the CHANGELOGs.
      
      [ci skip]
      c5b6ec7b
  13. 19 12月, 2015 1 次提交
  14. 17 12月, 2015 3 次提交
  15. 16 12月, 2015 1 次提交
  16. 14 12月, 2015 1 次提交
    • X
      let config.file_watcher be the way to enable the evented file watcher · 72235962
      Xavier Noria 提交于
      Before this commit, the sole presence of the Listen constant
      enabled the evented file watcher (unless listen resorted to
      the polling backend).
      
      This way, applications may depend on listen for other stuff
      independently of this feature. Also, allows teams with mixed
      setups to decide at boot time whether the evented watcher
      should be enabled for each particular instance.
      72235962
  17. 20 11月, 2015 1 次提交
  18. 16 11月, 2015 1 次提交
  19. 11 11月, 2015 4 次提交
  20. 07 11月, 2015 1 次提交
    • S
      Parameterize with options to preserve case of string · c9143e15
      Swaathi K 提交于
      Added test cases
      
      Using kwargs instead of three seperate functions
      
      Updated parameterize in transliterate.rb
      
      Updated parameterize in transliterate.rb
      
      Added deprecation warnings and updating RDoc+Guide
      
      Misspelled separtor. Fixed.
      
      Deprecated test cases and added support to parameterize with keyword parameters
      
      Squashing commits.
      
      Fixed test cases and added deprecated test cases
      
      Small changes to Gemfile.lock and CHANGELOG
      
      Update Gemfile.lock
      c9143e15
  21. 22 10月, 2015 1 次提交
  22. 21 10月, 2015 2 次提交
  23. 02 10月, 2015 1 次提交
  24. 25 9月, 2015 1 次提交
    • L
      Make `assert_difference` return the result of the yielded block. · 564b1620
      Lucas Mazza 提交于
      With this we can perform new assertions on the returned value without having
      to cache it with an outer variable or wrapping all subsequent assertions inside
      the `assert_difference` block.
      
      Before:
      
      ```
      post = nil
      assert_difference -> { Post.count }, 1 do
        Post.create
      end
      
      assert_predicate post, :persisted?
      ```
      
      Now:
      
      ```
      post = assert_difference -> { Post.count } do
        Post.create
      end
      
      assert_predicate post, :persisted?
      ```
      564b1620
  25. 23 9月, 2015 1 次提交
  26. 21 9月, 2015 1 次提交
  27. 19 9月, 2015 1 次提交
  28. 04 9月, 2015 1 次提交
  29. 01 9月, 2015 1 次提交