lib/inch/config/codebase.rb in inch-0.4.6 vs lib/inch/config/codebase.rb in inch-0.4.7
- old
+ new
@@ -55,11 +55,11 @@
end.flatten
end
def update_files(files)
return if files.nil?
- include_files expand_files(files["included"]) if files["included"]
- exclude_files expand_files(files["excluded"]) if files["excluded"]
+ @included_files = expand_files(files["included"]) if files["included"]
+ @excluded_files = expand_files(files["excluded"]) if files["excluded"]
end
end
end
-end
\ No newline at end of file
+end