Sha256: c5ea20497739761da1c049d21005a31fbc09f29970d34ccd04018fd19a1e2fb1
Contents?: true
Size: 783 Bytes
Versions: 26
Compression:
Stored size: 783 Bytes
Contents
# Handle line endings automatically for files detected as text # and leave all files detected as binary untouched. * text=auto # # The above will handle all files NOT found below # # These files are text and should be normalized (Convert crlf => lf) Gemfile Rakefile Vagrantfile *.rb text *.md text *.gemspec text *.lock text *.txt text *.yml text *.yaml text *.prefs text # Eclipse specific files *.project text *.buildpath text # Those have specific eol for testing purpose test/resources/json/params_unix_eol.json eol=lf test/resources/json/params_windows_eol.json eol=crlf test/resources/yml/params_unix_eol.yml eol=lf test/resources/yml/params_windows_eol.yml eol=crlf # These files are binary and should be left untouched # (binary is a macro for -text -diff) *.gem binary
Version data entries
26 entries across 26 versions & 1 rubygems