To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / exemplars / changeset_exemplar.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (377 Bytes)

1
class Changeset < ActiveRecord::Base
2
  generator_for :revision, :method => :next_revision
3
  generator_for :committed_on => Date.today
4
  generator_for :repository, :method => :generate_repository
5

    
6
  def self.next_revision
7
    @last_revision ||= '1'
8
    @last_revision.succ!
9
    @last_revision
10
  end
11

    
12
  def self.generate_repository
13
    Repository::Subversion.generate!
14
  end
15
end