Method: Gollum::Wiki#log

Defined in:
lib/gollum/wiki.rb

#log(options = {}) ⇒ Object

Public: All of the versions that have touched the Page.

options - The options Hash:

:page     - The Integer page number (default: 1).
:per_page - The Integer max count of items to return.

Returns an Array of Grit::Commit.



440
441
442
# File 'lib/gollum/wiki.rb', line 440

def log(options = {})
  @repo.log(@ref, nil, log_pagination_options(options))
end