diff options
author | Austin Ziegler <austin@zieglers.ca> | 2019-01-27 00:15:29 -0500 |
---|---|---|
committer | Austin Ziegler <austin@zieglers.ca> | 2019-01-27 11:08:38 -0500 |
commit | f07a49b67dcc1e2bad21d7c8f476af0df9e52151 (patch) | |
tree | 532caf445578eacb98ae84da344d2e879c8c3c6d /bin/ldiff | |
parent | 07ed577eba341f0ff0d7eebf4c1c2cc23083cba7 (diff) | |
download | diff-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-x | bin/ldiff | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |