Module: Subversion::SvnCommand::Revisions

Defined in:
lib/svn-command/svn_command.rb

Overview


Instance Method Summary collapse

Instance Method Details

#__author(author) ⇒ Object



951
952
953
# File 'lib/svn-command/svn_command.rb', line 951

def __author(author)
  @author_filter = author
end

#__by(author) ⇒ Object

Only show revisions that were committed by a certain author. :todo:



948
949
950
# File 'lib/svn-command/svn_command.rb', line 948

def __by(author)
  @author_filter = author
end

#__forwardObject

Start at earlier revision and go forwards rather than starting at the latest revision def __reverse



933
934
935
# File 'lib/svn-command/svn_command.rb', line 933

def __forward
  @reverse = true
end

#__forwardsObject



936
937
938
# File 'lib/svn-command/svn_command.rb', line 936

def __forwards
  @reverse = true
end

#__unreviewed_onlyObject

Only show revisions that are in need of a code review :todo:



942
943
944
# File 'lib/svn-command/svn_command.rb', line 942

def __unreviewed_only
  @unreviewed_only = true
end