Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 396 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 396 Bytes

impromptu-svn

An SVN module for Impromptu.

Section examples

  section 'svn:trunk',
    content: 'SVN trunk'
    when: svn.trunk

  section 'svn:tag',
    content: svn.tag
    when: svn.tag
    format: (tag) ->
      "SVN tag: #{tag}"

  section 'svn:branch',
    content: svn.branch
    when: svn.branch
    format: (branch) ->
      "SVN tag: #{branch}"