600. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/14/2017 1:29:04 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

600.1 Files compared

# Location File Last Modified
1 CUI-CPP-v2.3.2-source.zip Guardfile Mon Nov 20 23:19:07 2017 UTC
2 CUI-CPP-v2.3.2-source.zip Guardfile Thu Dec 14 16:11:26 2017 UTC

600.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 92
Changed 1 2
Inserted 0 0
Removed 0 0

600.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

600.4 Active regular expressions

No regular expressions were active.

600.5 Comparison detail

  1   # Guardfil e
  2  
  3   logger lev el:        :error,
  4          dev ice:       'tmp/guard .log'
  5  
  6   ignore(/sp ec/)
  7  
  8  
  9   guard 'pum a', :port  =>  PORT  do
  10     watch('G emfile.loc k')
  11     watch(%r {^config|l ib/.*})
  12   end
  13  
  14  
  15   guard 'bra keman', ou tput_files :  [
  16                         'tmp/brake man/curren t_file.htm l'
  17                      ],
  18                      ru n_on_start : true do
  19     watch(%r {^app/.+\. (erb|haml| rhtml|rb)$ })
  20     watch(%r {^config/. +\.rb$})
  21     watch(%r {^lib/.+\. rb$})
  22     watch('G emfile')
  23   end
  24  
  25  
  26   # rubycrit ic's defau lt is to p ut the htm l output i nto tmp/ru bycritic/c urrent_fil e.html
  27   guard "rub ycritic",  run_on_sta rt: false  do
  28     watch(%r {^app/(.+) \.rb$})
  29     watch(%r {^lib/(.+) \.rb$})
  30     watch(%r {^lib/task s/(.+)\.ra ke$})
  31   end
  32  
  33  
  34   guard :rub ocop, cli:   [
  35                             '--rai ls',
  36                             '--for mat', 'htm l',
  37                             '--out ',    'tmp /rubocop/c urrent_fil e.html',
  38                             '--for mat', 'sim ple',
  39                             '--out ',    'tmp /rubocop/c urrent_fil e.txt'
  40                    ],
  41                    hide _stdout:   true,
  42                    all_ on_start:  false  do
  43     watch(%r {.+\.rb$})
  44     watch(%r {.+\.rake$ })
  45     watch(%r {(?:.+/)?\ .rubocop\. yml$}) { | m| File.di rname(m[0] ) }
  46   end
  47