##// END OF EJS Templates
Revert "Fixed: gantt broken when no due date on project issues and versions."...
Revert "Fixed: gantt broken when no due date on project issues and versions." It broke the tests for overdue projects and isn't a good way to fix #6350 because it makes an assumption that a project is due Today and will still error if issue tracking is disabled. This reverts commit a7fd592db4037d635d04ca5ce3f01d0af3f0c8ae. (r4178) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4184 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3226:9044305b9335
r4070:83bfb8cd2b0a
Show More
news_exemplar.rb
16 lines | 373 B | text/x-ruby | RubyLexer
class News < ActiveRecord::Base
generator_for :title, :method => :next_title
generator_for :description, :method => :next_description
def self.next_title
@last_title ||= 'A New Item'
@last_title.succ!
@last_title
end
def self.next_description
@last_description ||= 'Some content here'
@last_description.succ!
@last_description
end
end