Changeset 8903
- Timestamp:
- 02/19/08 23:27:38 (5 months ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r8902 r8903 1 1 *SVN* 2 3 * Implement Bzr#next_revision so that pending changes can be reported correctly [casret] 2 4 3 5 * Use a proper export command for bzr SCM [drudru] tools/capistrano/lib/capistrano/recipes/deploy/scm/bzr.rb
r8902 r8903 63 63 end 64 64 65 # Increments the given revision number and returns it. 66 def next_revision(revision) 67 revision.to_i + 1 68 end 69 65 70 private 66 71