sscm.rb |
sscm.rbSummary
CopyrightCopyright © 2007 Katherine Rhodes (masukomi@masukomi.org) LicenseMIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. DocsFor basic FAQ questions please see: http://dnp.masukomi.org SSCMRunnerManages user interaction and tells the current SCMs what actions to perform. Summary
initialize
Sets up everything SSCM will need to do it’s run Parameters
process_lines
Iterates over the array of status lines SSCM was initialized with and passes them off to the appropriate scm line processor. Parameters
|
Sets up everything SSCM will need to do it’s run
def initialize()
Iterates over the array of status lines SSCM was initialized with and passes them off to the appropriate scm line processor.
def process_lines( status_lines, default_scm )
Asks the user if they want to add a newly discovered file.
def process_add( file_path )
Asks the user if they’d like to keep the changes, roll back to the previous version, or do nothing.
def process_modify( file_path )
When a user responds with something that wasn’t expected this is called to let them know
def unknown_response_notice( response )
Commits your changes with a short message to all the SCMs that support such an operation
def commit( message )
Tags the repos with your message
def tag( message )