Module: Subversion::SvnCommand::Revisions

Defined in:
lib/subwrap/svn_command.rb

Overview


Instance Method Summary collapse

Instance Method Details

#__author(author) ⇒ Object



1287
1288
1289
# File 'lib/subwrap/svn_command.rb', line 1287

def __author(author)
  @author_filter = author
end

#__by(author) ⇒ Object

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



1284
1285
1286
# File 'lib/subwrap/svn_command.rb', line 1284

def __by(author)
  @author_filter = author
end

#__forwardObject

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



1269
1270
1271
# File 'lib/subwrap/svn_command.rb', line 1269

def __forward
  @reverse = true
end

#__forwardsObject



1272
1273
1274
# File 'lib/subwrap/svn_command.rb', line 1272

def __forwards
  @reverse = true
end

#__unreviewed_onlyObject

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



1278
1279
1280
# File 'lib/subwrap/svn_command.rb', line 1278

def __unreviewed_only
  @unreviewed_only = true
end