##// END OF EJS Templates
attachment: update a functional test to switch "side by side" and "inline" for ISO-8859-1 patches (#2371, #9612)...
attachment: update a functional test to switch "side by side" and "inline" for ISO-8859-1 patches (#2371, #9612) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7873 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7338:189b31601621
r7753:617cb8d270ac
Show More
board_exemplar.rb
9 lines | 256 B | text/x-ruby | RubyLexer
class Board < ActiveRecord::Base
generator_for :name, :start => 'A Forum'
generator_for :description, :start => 'Some description here'
generator_for :project, :method => :generate_project
def self.generate_project
Project.generate!
end
end