CSC/ECE 517 Fall 2013/oss vna: Difference between revisions
Jump to navigation
Jump to search
(Created page with "1 Introduction 2 Existing Design 3 Project Requirement 4 Implementation 4.1 Timezone Issue 4.2 Topics Tab 4.3 Teammate Review Option 4.4 Renaming Methods 4.5 Refractoring copy me...") |
No edit summary |
||
Line 1: | Line 1: | ||
{| class="wikitable" | |||
|- | |||
! style="width:10%;"|Debug Option | |||
! style="width:10%;"|Free/Commercial | |||
! style="width:30%;"|Comments | |||
|- style="vertical-align:top;" | |||
| Debug Helpers | |||
| Free | |||
| Inspect the contents of an object | |||
|- style="vertical-align:top;" | |||
| Logger | |||
| Free | |||
| Support for outputting the contents of an object | |||
|- style="vertical-align:top;" | |||
| Tagged Logging | |||
| Free | |||
| Support for outputting the contents of object. Tagging feature quite useful for multi-user/large applications. | |||
|- style="vertical-align:top;" | |||
| Debugger gem | |||
| Free | |||
| Support for step-wise command-line debugging. Lots of advanced features available. | |||
|- style="vertical-align:top;" | |||
| Ruby-debug gem | |||
| Free | |||
| Support for step-wise command-line debugging. Lots of advanced features available. | |||
|- style="vertical-align:top;" | |||
| Pry gem | |||
| Free | |||
| Support for step-wise command-line debugging. Lots of advanced commands available for better debugging. | |||
|- style="vertical-align:top;" | |||
| Rubymine | |||
| Commercial | |||
| Support for step-wise graphical debugging. Lots of advanced features available. | |||
|- style="vertical-align:top;" | |||
|} | |||
1 Introduction | 1 Introduction | ||
2 Existing Design | 2 Existing Design |
Revision as of 13:46, 29 October 2013
Debug Option | Free/Commercial | Comments |
---|---|---|
Debug Helpers | Free | Inspect the contents of an object |
Logger | Free | Support for outputting the contents of an object |
Tagged Logging | Free | Support for outputting the contents of object. Tagging feature quite useful for multi-user/large applications. |
Debugger gem | Free | Support for step-wise command-line debugging. Lots of advanced features available. |
Ruby-debug gem | Free | Support for step-wise command-line debugging. Lots of advanced features available. |
Pry gem | Free | Support for step-wise command-line debugging. Lots of advanced commands available for better debugging. |
Rubymine | Commercial | Support for step-wise graphical debugging. Lots of advanced features available. |
1 Introduction
2 Existing Design
3 Project Requirement
4 Implementation
4.1 Timezone Issue
4.2 Topics Tab
4.3 Teammate Review Option
4.4 Renaming Methods
4.5 Refractoring copy method
5 Design
5.1 View
5.2 Controller
5.3 Model
6.Future work
6 External Links