summaryrefslogtreecommitdiff
path: root/bin/ldiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2019-01-27 00:15:29 -0500
committerAustin Ziegler <austin@zieglers.ca>2019-01-27 11:08:38 -0500
commitf07a49b67dcc1e2bad21d7c8f476af0df9e52151 (patch)
tree532caf445578eacb98ae84da344d2e879c8c3c6d /bin/ldiff
parent07ed577eba341f0ff0d7eebf4c1c2cc23083cba7 (diff)
downloaddiff-lcs-rubocop.tar.gz
Applied Rubocop rules that I likerubocop
- Other linting configuration also applied. - Soft-deprecating versions older than 2.3.
Diffstat (limited to 'bin/ldiff')
-rwxr-xr-xbin/ldiff5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/ldiff b/bin/ldiff
index a9b876f..f4734f5 100755
--- a/bin/ldiff
+++ b/bin/ldiff
@@ -1,6 +1,9 @@
-#!ruby -w
+#! /usr/bin/env ruby -w
+# frozen_string_literal: true
require 'diff/lcs'
require 'diff/lcs/ldiff'
exit Diff::LCS::Ldiff.run(ARGV)
+
+# vim: ft=ruby