[codeface] [PATCH 1/3] Add support for analyzing ruby files

  • From: Mitchell Joblin <joblin.m@xxxxxxxxx>
  • To: codeface@xxxxxxxxxxxxx
  • Date: Thu, 14 Aug 2014 22:37:16 +0200

Signed-off-by: Mitchell Joblin <mitchell.joblin.ext@xxxxxxxxxxx>
---
 codeface/VCS.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/codeface/VCS.py b/codeface/VCS.py
index 81b2af3..2502c16 100644
--- a/codeface/VCS.py
+++ b/codeface/VCS.py
@@ -1067,7 +1067,7 @@ class gitVCS (VCS):
 
         #filter results to only get implementation files
         fileExt = (".c", ".cc", ".cpp", ".cxx", ".cs", ".asmx", ".m", ".mm",
-                   ".js", ".java", ".j", ".jav", ".php",".py", ".sh")
+                   ".js", ".java", ".j", ".jav", ".php",".py", ".sh", ".rb")
         fileNames = [fileName for fileName in output if 
fileName.endswith(fileExt)]
 
         self.setFileNames(fileNames)
-- 
1.9.1


Other related posts:

  • » [codeface] [PATCH 1/3] Add support for analyzing ruby files - Mitchell Joblin