Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8903

Show
Ignore:
Timestamp:
02/19/08 23:27:38 (5 months ago)
Author:
minam
Message:

Implement Bzr#next_revision so that pending changes can be reported correctly (closes #10928)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r8902 r8903  
    11*SVN* 
     2 
     3* Implement Bzr#next_revision so that pending changes can be reported correctly [casret] 
    24 
    35* Use a proper export command for bzr SCM [drudru] 
  • tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb

    r8902 r8903  
    6363        end 
    6464 
     65        # Increments the given revision number and returns it. 
     66        def next_revision(revision) 
     67          revision.to_i + 1 
     68        end 
     69 
    6570        private 
    6671