Skip to content

Commit

Permalink
v2.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Dec 31, 2016
1 parent acedf94 commit 4cd337d
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Ignore temporary Excel files
# Ignore temporary Excel files and OS files
*/~$*

# Ignore scratch work and other files
_scratch
.DS_Store
.DS_Store
Binary file removed Excel-TDD - Blank - Inline.xlsm
Binary file not shown.
Binary file modified Excel-TDD - Blank.xlsm
Binary file not shown.
Binary file modified specs/Excel-TDD - Specs.xlsm
Binary file not shown.
8 changes: 7 additions & 1 deletion src/ImmediateReporter.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' ImmediateReporter v2.0.0-alpha
' ImmediateReporter v2.0.0-beta
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
'
' Report results to Immediate Window
Expand All @@ -17,6 +17,12 @@ Attribute VB_Exposed = True
' @author tim.hall.engr@gmail.com
' @license MIT (http://www.opensource.org/licenses/mit-license.php)
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Option Explicit

' --------------------------------------------- '
' Constants and Private Variables
' --------------------------------------------- '

Private WithEvents pSpecs As SpecSuite
Attribute pSpecs.VB_VarHelpID = -1
Private Finished As Boolean
Expand Down
2 changes: 1 addition & 1 deletion src/SpecSuite.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' SpecSuite v2.0.0-alpha
' SpecSuite v2.0.0-beta
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
'
' A collection of specs and results
Expand Down
11 changes: 8 additions & 3 deletions src/WorkbookReporter.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' DisplayReporter v2.0.0-alpha
' DisplayReporter v2.0.0-beta
' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
'
' Report results to Worksheet
Expand All @@ -17,6 +17,12 @@ Attribute VB_Exposed = True
' @author tim.hall.engr@gmail.com
' @license MIT (http://www.opensource.org/licenses/mit-license.php)
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Option Explicit

' --------------------------------------------- '
' Constants and Private Variables
' --------------------------------------------- '

Private Const ProgressWidth As Long = 128
Private pSheet As Worksheet
Private pCount As Long
Expand Down Expand Up @@ -194,8 +200,7 @@ Private Sub DisplayResults()
For Each Divider In Dividers
With pSheet.Range(pSheet.Cells(StartRow + Divider, StartColumn), pSheet.Cells(StartRow + Divider, StartColumn + 1)).Borders(xlEdgeTop)
.LineStyle = xlContinuous
.ThemeColor = 1
.TintAndShade = -0.249946592608417
.Color = VBA.RGB(191, 191, 191)
.Weight = xlThin
End With
Next Divider
Expand Down

0 comments on commit 4cd337d

Please sign in to comment.