Module: Subversion::SvnCommand::Revisions

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

Overview


Instance Method Summary collapse

Instance Method Details

#__author(author) ⇒ Object



1282
1283
1284
# File 'lib/svn-command/svn_command.rb', line 1282

def __author(author)
  @author_filter = author
end

#__by(author) ⇒ Object

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



1279
1280
1281
# File 'lib/svn-command/svn_command.rb', line 1279

def __by(author)
  @author_filter = author
end

#__forwardObject

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



1264
1265
1266
# File 'lib/svn-command/svn_command.rb', line 1264

def __forward
  @reverse = true
end

#__forwardsObject



1267
1268
1269
# File 'lib/svn-command/svn_command.rb', line 1267

def __forwards
  @reverse = true
end

#__unreviewed_onlyObject

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



1273
1274
1275
# File 'lib/svn-command/svn_command.rb', line 1273

def __unreviewed_only
  @unreviewed_only = true
end