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 / repository_exemplar.rb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (222 Bytes)

1
class Repository < ActiveRecord::Base
2
  generator_for :type => 'Subversion'
3
  generator_for :url, :method => :next_url
4

    
5
  def self.next_url
6
    @last_url ||= 'file:///test/svn'
7
    @last_url.succ!
8
    @last_url
9
  end
10

    
11
end