twb 4.5.0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/t.rb +66 -0
 - data/lib/twb.rb +2 -2
 - data/lib/twb/analysis/{AnnotatedFieldsCSVEmitter.rb → annotatedfieldscsvemitter.rb} +0 -0
 - data/lib/twb/analysis/{DocumentedFieldsMarkdownEmitter.rb → documentedfieldsmarkdownemitter.rb} +0 -0
 - data/lib/twb/analysis/{WorkbookSummaryAnalyzer.rb → workbooksummaryanalyzer.rb} +0 -0
 - data/t.rb +62 -0
 - metadata +7 -5
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: cf4c0c67c1f8285ac4e8b868f80efef4e44ec1e134c4ba5e192dedb821459ac5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3d9feaae8661a2e347437bc86b0e2b542454f3dea0d23a4e1774f8374da782dc
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 3384342ea2a58e695b708179643c3ea324d1a46b1ea41202cae3456ebf950ad5b98ccfd5ed306dcfdadc84ad902ba09a0f457afb90f85075a9febe9f4bb03714
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: bac32745fb0fac9a0c8c046915c7b4594b2f26e3ebe650fc79ad3fb866eec310c673714a446147c2c42b79b990cff725832122ce2ca1c7a384f80151e47aac43
         
     | 
    
        data/lib/t.rb
    ADDED
    
    | 
         @@ -0,0 +1,66 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            def checkFile fileName
         
     | 
| 
      
 2 
     | 
    
         
            +
                qfn    = "./#{fileName}"
         
     | 
| 
      
 3 
     | 
    
         
            +
                exists = File.exists? qnf
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            require_relative 'twb/tabclass'
         
     | 
| 
      
 8 
     | 
    
         
            +
            require_relative 'twb/tabtool'
         
     | 
| 
      
 9 
     | 
    
         
            +
            require_relative 'twb/dashboard'
         
     | 
| 
      
 10 
     | 
    
         
            +
            require_relative 'twb/datasource'
         
     | 
| 
      
 11 
     | 
    
         
            +
            require_relative 'twb/connection'
         
     | 
| 
      
 12 
     | 
    
         
            +
            require_relative 'twb/docdashboard'
         
     | 
| 
      
 13 
     | 
    
         
            +
            require_relative 'twb/dbfield'
         
     | 
| 
      
 14 
     | 
    
         
            +
            require_relative 'twb/localfield'
         
     | 
| 
      
 15 
     | 
    
         
            +
            require_relative 'twb/metadatafield'
         
     | 
| 
      
 16 
     | 
    
         
            +
            require_relative 'twb/storyboard'
         
     | 
| 
      
 17 
     | 
    
         
            +
            require_relative 'twb/window'
         
     | 
| 
      
 18 
     | 
    
         
            +
            require_relative 'twb/workbook'
         
     | 
| 
      
 19 
     | 
    
         
            +
            require_relative 'twb/worksheet'
         
     | 
| 
      
 20 
     | 
    
         
            +
            require_relative 'twb/parameter'
         
     | 
| 
      
 21 
     | 
    
         
            +
            require_relative 'twb/action'
         
     | 
| 
      
 22 
     | 
    
         
            +
            require_relative 'twb/columnfield.rb'
         
     | 
| 
      
 23 
     | 
    
         
            +
            require_relative 'twb/calculatedfield'
         
     | 
| 
      
 24 
     | 
    
         
            +
            require_relative 'twb/codedfield'
         
     | 
| 
      
 25 
     | 
    
         
            +
            require_relative 'twb/groupfield'
         
     | 
| 
      
 26 
     | 
    
         
            +
            require_relative 'twb/fieldcalculation'
         
     | 
| 
      
 27 
     | 
    
         
            +
            require_relative 'twb/quickfilter'
         
     | 
| 
      
 28 
     | 
    
         
            +
            require_relative 'twb/docdashboardimagevert'
         
     | 
| 
      
 29 
     | 
    
         
            +
            require_relative 'twb/docdashboardwebvert'
         
     | 
| 
      
 30 
     | 
    
         
            +
            require_relative 'twb/util/twbDashSheetDataDotBuilder'
         
     | 
| 
      
 31 
     | 
    
         
            +
            require_relative 'twb/util/dotFileRenderer'
         
     | 
| 
      
 32 
     | 
    
         
            +
            require_relative 'twb/util/htmllistcollapsible'
         
     | 
| 
      
 33 
     | 
    
         
            +
            require_relative 'twb/util/xraydashboards'
         
     | 
| 
      
 34 
     | 
    
         
            +
            require_relative 'twb/util/graph'
         
     | 
| 
      
 35 
     | 
    
         
            +
            require_relative 'twb/util/graphnode'
         
     | 
| 
      
 36 
     | 
    
         
            +
            require_relative 'twb/util/graphedge'
         
     | 
| 
      
 37 
     | 
    
         
            +
            require_relative 'twb/util/graphedges'
         
     | 
| 
      
 38 
     | 
    
         
            +
            require_relative 'twb/util/gml'
         
     | 
| 
      
 39 
     | 
    
         
            +
            require_relative 'twb/util/cypher'
         
     | 
| 
      
 40 
     | 
    
         
            +
            require_relative 'twb/util/cypherpython'
         
     | 
| 
      
 41 
     | 
    
         
            +
            require_relative 'twb/util/fielddomainloader'
         
     | 
| 
      
 42 
     | 
    
         
            +
            require_relative 'twb/util/docprep'
         
     | 
| 
      
 43 
     | 
    
         
            +
            require_relative 'twb/analysis/documentedfieldsmarkdownemitter'
         
     | 
| 
      
 44 
     | 
    
         
            +
            require_relative 'twb/analysis/annotatedfieldscsvemitter'
         
     | 
| 
      
 45 
     | 
    
         
            +
            require_relative 'twb/analysis/WorkbookSummaryAnalyzer'
         
     | 
| 
      
 46 
     | 
    
         
            +
            require_relative 'twb/analysis/calculatedfields/calculatedfieldsanalyzer'
         
     | 
| 
      
 47 
     | 
    
         
            +
            require_relative 'twb/analysis/calculatedfields/groupfieldsanalyzer'
         
     | 
| 
      
 48 
     | 
    
         
            +
            require_relative 'twb/analysis/calculatedfields/markdownemitter'
         
     | 
| 
      
 49 
     | 
    
         
            +
            require_relative 'twb/analysis/calculatedfields/csvemitter'
         
     | 
| 
      
 50 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/DataSourceFieldsCSVEmitter'
         
     | 
| 
      
 51 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/DataSourceTableFieldsCSVEmitter'
         
     | 
| 
      
 52 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/categoricalColorCodingAnalyzer'
         
     | 
| 
      
 53 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/googlesheetdatasourcesanalyzer'
         
     | 
| 
      
 54 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/parametersanalyzer'
         
     | 
| 
      
 55 
     | 
    
         
            +
            require_relative 'twb/analysis/datasources/DataSourceOriginsAnalyzer'
         
     | 
| 
      
 56 
     | 
    
         
            +
            require_relative 'twb/analysis/Sheets/WorksheetDataStructureCSVEmitter'
         
     | 
| 
      
 57 
     | 
    
         
            +
            require_relative 'twb/analysis/Sheets/sheetfiltersanalyzer'
         
     | 
| 
      
 58 
     | 
    
         
            +
            require_relative 'twb/analysis/Sheets/sheetfieldsanalyzer'
         
     | 
| 
      
 59 
     | 
    
         
            +
            require_relative 'twb/analysis/Sheets/dashsheetsanalyzer'
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
            # Represents Tableau Workbooks, their contents, and classes that analyze and manipulate them.
         
     | 
| 
      
 63 
     | 
    
         
            +
            #
         
     | 
| 
      
 64 
     | 
    
         
            +
            module Twb
         
     | 
| 
      
 65 
     | 
    
         
            +
              VERSION = '4.5.1'
         
     | 
| 
      
 66 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/twb.rb
    CHANGED
    
    | 
         @@ -50,7 +50,7 @@ require_relative 'twb/util/cypherpython' 
     | 
|
| 
       50 
50 
     | 
    
         
             
            require_relative 'twb/util/fielddomainloader'
         
     | 
| 
       51 
51 
     | 
    
         
             
            require_relative 'twb/util/docprep'
         
     | 
| 
       52 
52 
     | 
    
         
             
            require_relative 'twb/analysis/documentedfieldsmarkdownemitter'
         
     | 
| 
       53 
     | 
    
         
            -
            require_relative 'twb/analysis/ 
     | 
| 
      
 53 
     | 
    
         
            +
            require_relative 'twb/analysis/annotatedfieldscsvemitter'
         
     | 
| 
       54 
54 
     | 
    
         
             
            require_relative 'twb/analysis/WorkbookSummaryAnalyzer'
         
     | 
| 
       55 
55 
     | 
    
         
             
            require_relative 'twb/analysis/calculatedfields/calculatedfieldsanalyzer'
         
     | 
| 
       56 
56 
     | 
    
         
             
            require_relative 'twb/analysis/calculatedfields/groupfieldsanalyzer'
         
     | 
| 
         @@ -71,5 +71,5 @@ require_relative 'twb/analysis/Sheets/dashsheetsanalyzer' 
     | 
|
| 
       71 
71 
     | 
    
         
             
            # Represents Tableau Workbooks, their contents, and classes that analyze and manipulate them.
         
     | 
| 
       72 
72 
     | 
    
         
             
            #
         
     | 
| 
       73 
73 
     | 
    
         
             
            module Twb
         
     | 
| 
       74 
     | 
    
         
            -
              VERSION = '4.5. 
     | 
| 
      
 74 
     | 
    
         
            +
              VERSION = '4.5.1'
         
     | 
| 
       75 
75 
     | 
    
         
             
            end
         
     | 
| 
         
            File without changes
         
     | 
    
        data/lib/twb/analysis/{DocumentedFieldsMarkdownEmitter.rb → documentedfieldsmarkdownemitter.rb}
    RENAMED
    
    | 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
    
        data/t.rb
    ADDED
    
    | 
         @@ -0,0 +1,62 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            def checkfile fileName
         
     | 
| 
      
 2 
     | 
    
         
            +
                # puts "--"
         
     | 
| 
      
 3 
     | 
    
         
            +
                qfn    = "./lib/#{fileName}.rb"
         
     | 
| 
      
 4 
     | 
    
         
            +
                exists = File.exists? qfn
         
     | 
| 
      
 5 
     | 
    
         
            +
                puts "#{exists}  #{fileName}  -- #{qfn}"
         
     | 
| 
      
 6 
     | 
    
         
            +
            end
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            checkfile  'twb/tabclass'
         
     | 
| 
      
 10 
     | 
    
         
            +
            checkfile  'twb/tabtool'
         
     | 
| 
      
 11 
     | 
    
         
            +
            checkfile  'twb/dashboard'
         
     | 
| 
      
 12 
     | 
    
         
            +
            checkfile  'twb/datasource'
         
     | 
| 
      
 13 
     | 
    
         
            +
            checkfile  'twb/connection'
         
     | 
| 
      
 14 
     | 
    
         
            +
            checkfile  'twb/docdashboard'
         
     | 
| 
      
 15 
     | 
    
         
            +
            checkfile  'twb/dbfield'
         
     | 
| 
      
 16 
     | 
    
         
            +
            checkfile  'twb/localfield'
         
     | 
| 
      
 17 
     | 
    
         
            +
            checkfile  'twb/metadatafield'
         
     | 
| 
      
 18 
     | 
    
         
            +
            checkfile  'twb/storyboard'
         
     | 
| 
      
 19 
     | 
    
         
            +
            checkfile  'twb/window'
         
     | 
| 
      
 20 
     | 
    
         
            +
            checkfile  'twb/workbook'
         
     | 
| 
      
 21 
     | 
    
         
            +
            checkfile  'twb/worksheet'
         
     | 
| 
      
 22 
     | 
    
         
            +
            checkfile  'twb/parameter'
         
     | 
| 
      
 23 
     | 
    
         
            +
            checkfile  'twb/action'
         
     | 
| 
      
 24 
     | 
    
         
            +
            checkfile  'twb/columnfield'
         
     | 
| 
      
 25 
     | 
    
         
            +
            checkfile  'twb/calculatedfield'
         
     | 
| 
      
 26 
     | 
    
         
            +
            checkfile  'twb/codedfield'
         
     | 
| 
      
 27 
     | 
    
         
            +
            checkfile  'twb/groupfield'
         
     | 
| 
      
 28 
     | 
    
         
            +
            checkfile  'twb/fieldcalculation'
         
     | 
| 
      
 29 
     | 
    
         
            +
            checkfile  'twb/quickfilter'
         
     | 
| 
      
 30 
     | 
    
         
            +
            checkfile  'twb/docdashboardimagevert'
         
     | 
| 
      
 31 
     | 
    
         
            +
            checkfile  'twb/docdashboardwebvert'
         
     | 
| 
      
 32 
     | 
    
         
            +
            checkfile  'twb/util/twbDashSheetDataDotBuilder'
         
     | 
| 
      
 33 
     | 
    
         
            +
            checkfile  'twb/util/dotFileRenderer'
         
     | 
| 
      
 34 
     | 
    
         
            +
            checkfile  'twb/util/htmllistcollapsible'
         
     | 
| 
      
 35 
     | 
    
         
            +
            checkfile  'twb/util/xraydashboards'
         
     | 
| 
      
 36 
     | 
    
         
            +
            checkfile  'twb/util/graph'
         
     | 
| 
      
 37 
     | 
    
         
            +
            checkfile  'twb/util/graphnode'
         
     | 
| 
      
 38 
     | 
    
         
            +
            checkfile  'twb/util/graphedge'
         
     | 
| 
      
 39 
     | 
    
         
            +
            checkfile  'twb/util/graphedges'
         
     | 
| 
      
 40 
     | 
    
         
            +
            checkfile  'twb/util/gml'
         
     | 
| 
      
 41 
     | 
    
         
            +
            checkfile  'twb/util/cypher'
         
     | 
| 
      
 42 
     | 
    
         
            +
            checkfile  'twb/util/cypherpython'
         
     | 
| 
      
 43 
     | 
    
         
            +
            checkfile  'twb/util/fielddomainloader'
         
     | 
| 
      
 44 
     | 
    
         
            +
            checkfile  'twb/util/docprep'
         
     | 
| 
      
 45 
     | 
    
         
            +
            checkfile  'twb/analysis/documentedfieldsmarkdownemitter'
         
     | 
| 
      
 46 
     | 
    
         
            +
            checkfile  'twb/analysis/annotatedfieldscsvemitter'
         
     | 
| 
      
 47 
     | 
    
         
            +
            checkfile  'twb/analysis/WorkbookSummaryAnalyzer'
         
     | 
| 
      
 48 
     | 
    
         
            +
            checkfile  'twb/analysis/calculatedfields/calculatedfieldsanalyzer'
         
     | 
| 
      
 49 
     | 
    
         
            +
            checkfile  'twb/analysis/calculatedfields/groupfieldsanalyzer'
         
     | 
| 
      
 50 
     | 
    
         
            +
            checkfile  'twb/analysis/calculatedfields/markdownemitter'
         
     | 
| 
      
 51 
     | 
    
         
            +
            checkfile  'twb/analysis/calculatedfields/csvemitter'
         
     | 
| 
      
 52 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/DataSourceFieldsCSVEmitter'
         
     | 
| 
      
 53 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/DataSourceTableFieldsCSVEmitter'
         
     | 
| 
      
 54 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/categoricalColorCodingAnalyzer'
         
     | 
| 
      
 55 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/googlesheetdatasourcesanalyzer'
         
     | 
| 
      
 56 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/parametersanalyzer'
         
     | 
| 
      
 57 
     | 
    
         
            +
            checkfile  'twb/analysis/datasources/DataSourceOriginsAnalyzer'
         
     | 
| 
      
 58 
     | 
    
         
            +
            checkfile  'twb/analysis/Sheets/WorksheetDataStructureCSVEmitter'
         
     | 
| 
      
 59 
     | 
    
         
            +
            checkfile  'twb/analysis/Sheets/sheetfiltersanalyzer'
         
     | 
| 
      
 60 
     | 
    
         
            +
            checkfile  'twb/analysis/Sheets/sheetfieldsanalyzer'
         
     | 
| 
      
 61 
     | 
    
         
            +
            checkfile  'twb/analysis/Sheets/dashsheetsanalyzer'
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: twb
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 4.5. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 4.5.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Chris Gerrard
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2019-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2019-02-18 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: creek
         
     | 
| 
         @@ -57,10 +57,10 @@ executables: [] 
     | 
|
| 
       57 
57 
     | 
    
         
             
            extensions: []
         
     | 
| 
       58 
58 
     | 
    
         
             
            extra_rdoc_files: []
         
     | 
| 
       59 
59 
     | 
    
         
             
            files:
         
     | 
| 
      
 60 
     | 
    
         
            +
            - lib/t.rb
         
     | 
| 
       60 
61 
     | 
    
         
             
            - lib/twb.rb
         
     | 
| 
       61 
62 
     | 
    
         
             
            - lib/twb/TwbTest.rb
         
     | 
| 
       62 
63 
     | 
    
         
             
            - lib/twb/action.rb
         
     | 
| 
       63 
     | 
    
         
            -
            - lib/twb/analysis/AnnotatedFieldsCSVEmitter.rb
         
     | 
| 
       64 
64 
     | 
    
         
             
            - lib/twb/analysis/CalculatedFields/CSVEmitter.rb
         
     | 
| 
       65 
65 
     | 
    
         
             
            - lib/twb/analysis/CalculatedFields/CalculatedFieldsAnalyzer.rb
         
     | 
| 
       66 
66 
     | 
    
         
             
            - lib/twb/analysis/CalculatedFields/MarkdownEmitter.rb
         
     | 
| 
         @@ -73,7 +73,6 @@ files: 
     | 
|
| 
       73 
73 
     | 
    
         
             
            - lib/twb/analysis/DataSources/googlesheetdatasourcesanalyzer.rb
         
     | 
| 
       74 
74 
     | 
    
         
             
            - lib/twb/analysis/DataSources/parametersanalyzer.rb
         
     | 
| 
       75 
75 
     | 
    
         
             
            - lib/twb/analysis/DocumentedFieldsCSVEmitter.rb
         
     | 
| 
       76 
     | 
    
         
            -
            - lib/twb/analysis/DocumentedFieldsMarkdownEmitter.rb
         
     | 
| 
       77 
76 
     | 
    
         
             
            - lib/twb/analysis/Sheets/WorksheetDataStructureCSVEmitter.rb
         
     | 
| 
       78 
77 
     | 
    
         
             
            - lib/twb/analysis/Sheets/analyzeDashboardSheets.rb
         
     | 
| 
       79 
78 
     | 
    
         
             
            - lib/twb/analysis/Sheets/dashsheetsanalyzer.rb
         
     | 
| 
         @@ -81,7 +80,9 @@ files: 
     | 
|
| 
       81 
80 
     | 
    
         
             
            - lib/twb/analysis/Sheets/sheetfiltersanalyzer.rb
         
     | 
| 
       82 
81 
     | 
    
         
             
            - lib/twb/analysis/Sheets/sheetfiltersanalyzerA.rb
         
     | 
| 
       83 
82 
     | 
    
         
             
            - lib/twb/analysis/Sheets/sheetsourcesanalyzer.rb
         
     | 
| 
       84 
     | 
    
         
            -
            - lib/twb/analysis/ 
     | 
| 
      
 83 
     | 
    
         
            +
            - lib/twb/analysis/annotatedfieldscsvemitter.rb
         
     | 
| 
      
 84 
     | 
    
         
            +
            - lib/twb/analysis/documentedfieldsmarkdownemitter.rb
         
     | 
| 
      
 85 
     | 
    
         
            +
            - lib/twb/analysis/workbooksummaryanalyzer.rb
         
     | 
| 
       85 
86 
     | 
    
         
             
            - lib/twb/calculatedfield.rb
         
     | 
| 
       86 
87 
     | 
    
         
             
            - lib/twb/codedfield.rb
         
     | 
| 
       87 
88 
     | 
    
         
             
            - lib/twb/columnfield.rb
         
     | 
| 
         @@ -136,6 +137,7 @@ files: 
     | 
|
| 
       136 
137 
     | 
    
         
             
            - lib/twb/window.rb
         
     | 
| 
       137 
138 
     | 
    
         
             
            - lib/twb/workbook.rb
         
     | 
| 
       138 
139 
     | 
    
         
             
            - lib/twb/worksheet.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - t.rb
         
     | 
| 
       139 
141 
     | 
    
         
             
            - test/fieldAliases.rb
         
     | 
| 
       140 
142 
     | 
    
         
             
            - test/testDashboardXRay.rb
         
     | 
| 
       141 
143 
     | 
    
         
             
            - test/testDocDashboard.rb
         
     |