This is an automated email from the ASF dual-hosted git repository. donaldp pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/buildr.git
commit 37ec56299f217b8395a2810fccbce3d8eb821283 Author: Peter Donald <pe...@realityforge.org> AuthorDate: Tue Feb 26 10:07:14 2019 +1100 Use the `zapwhite` gem to manage file whitespace within repository --- .gitattributes | 25 +++++++++++++++++++++++++ CHANGELOG | 1 + buildr.gemspec | 2 ++ 3 files changed, 28 insertions(+) diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4c95e62 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,25 @@ +# DO NOT EDIT: File is auto-generated +* -text +*.bat text eol=crlf +*.cmd text eol=crlf +*.css text +*.gemspec text +*.html text +*.java text +*.png binary +*.rake text +*.rb text +*.rdoc text +*.sh text +*.sh text eol=lf +*.textile text +*.txt text +*.xml text +*.xsl text +*.yml text +.gitignore text +Buildfile text +CHANGELOG text +Gemfile text +LICENSE text +Rakefile text diff --git a/CHANGELOG b/CHANGELOG index c2c06d5..68493f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ 1.5.8 (Pending) * Fixed: Changed references to `https://repo1.maven.org/maven2` to use https where possible. +* Change: Use the `zapwhite` gem to manage file whitespace within repository. 1.5.7 (2019-02-16) * Fixed: The fix that allowed special characters in usernames and passwords was only partially applied diff --git a/buildr.gemspec b/buildr.gemspec index 53e7fe2..8451707 100644 --- a/buildr.gemspec +++ b/buildr.gemspec @@ -97,4 +97,6 @@ for those one-off tasks, with a language that's a joy to use. spec.add_development_dependency 'pygmentize', '0.0.3' spec.add_development_dependency 'saikuro_treemap', '0.2.0' spec.add_development_dependency 'atoulme-Saikuro', '1.2.1' + # Used to manage whitespace of files within repository + spec.add_development_dependency 'zapwhite', '2.10.0' end