Skip to content

Commit 52a8c62

Browse files
committed
fix ignore list
1 parent f03285b commit 52a8c62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/problematic_variable_finder/gem_problems.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def ignore_gem?(name)
5353
delegate :options, to: ProblematicVariableFinder
5454

5555
def ignore_list
56-
@ignore_list ||= ProblematicVariableFinder.read_file(File.expand_path('DEFAULT_IGNORED_GEMS', __dir__)).map(&:strip)
56+
@ignore_list ||= ProblematicVariableFinder.read_file(File.expand_path('DEFAULT_IGNORED_GEMS', __dir__)).split("\n").map(&:strip)
5757
end
5858

5959
def outdated_gems

0 commit comments

Comments
 (0)