Module: Subversion::SvnCommand::Revisions

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

Overview


Instance Method Summary collapse

Instance Method Details

#__author(author) ⇒ Object



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

def __author(author)
  @author_filter = author
end

#__by(author) ⇒ Object

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



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

def __by(author)
  @author_filter = author
end

#__forwardObject

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



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

def __forward
  @reverse = true
end

#__forwardsObject



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

def __forwards
  @reverse = true
end

#__unreviewed_onlyObject

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



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

def __unreviewed_only
  @unreviewed_only = true
end