You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/app/models/open_source_project.rb

7 lines
201 B

class OpenSourceProject < ActiveRecord::Base
attr_accessible :String
def short_description(length = 255)
description.gsub(/^(.{#{length}}[^\n\r]*).*$/m, '\1...').strip if description
end
end