blob: 80a5c6e43ea49e99887ddd7e01f689965e90d25c (
plain)
1
2
3
4
5
6
7
8
9
10
|
# frozen_string_literal: true
# typed: strict
require 'diff/lcs'
warn 'diff/lcs/array: Automatically extending Array with Diff::LCS is deprecated'
class Array #:nodoc:
include Diff::LCS
end
|