1. Sep 20, 2019
  2. Sep 18, 2019
  3. Sep 17, 2019
  4. Sep 14, 2019
  5. Sep 13, 2019
  6. Sep 06, 2019
  7. Aug 28, 2019
  8. Aug 21, 2019
  9. Aug 20, 2019
  10. Aug 13, 2019
  11. Aug 10, 2019
  12. Aug 08, 2019
  13. Aug 06, 2019
  14. Aug 02, 2019
    • Schuyler Eldridge's avatar
      ac42287b
    • chick's avatar
      Followup to PR #1142 · 2bf399c2
      chick authored
      - use scala.io.Source instead of io.Source
      - .toList cleaner way to force stream to be read.
      - clear old commented out code in ProtoBufSpec
      2bf399c2
    • chick's avatar
      Followup to PR #1142 · 54e67889
      chick authored
      Fixes a threading bug in where lazy reading of file
      caused a problem for multithreaded access to the that was read.
      
      Changes all uses of io.Source to use new API
      getText
      getLines
      getTextResource
      getLinesResouce
      
      Make style to only import FileUtils and not its methods
      So code is more explicit as e.g. FileUtils.getText()
      54e67889
  15. Aug 01, 2019
    • Chick Markley's avatar
      io.Source is not closed when used in most common text reading idiom (#1142) · 86d2470d
      Chick Markley authored
      - Provide new tools for reading in text
        - from a file
        - from a string file name
        - from a resource file
      - text can be read in as
        - a single string with newlines
        - a seq of strings, one string per line
      - FileUtils put in its own file
        - in same package to keep existing API the same
      
      Hopefully this will protect users from creating resource leaks that
      may explain sbt crashing.
      
      Also simpler interface should make code more streamlined, existing
      uses of io.Source seem often to be converting between text and seq
      unnecessarily.
      
      Add note of caution on requiring slash on resource readers
      86d2470d
  16. Jul 31, 2019