akofink/akofink

View on GitHub
app/models/blog.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Blog < ActiveRecord::Base
  def to_s
    return "#{id} - #{title} - #{content}"[0..60]
  end
end