Mercurial > hg > soundsoftware-site
view plugins/redmine_bibliography/app/models/author.rb @ 1276:20a6b12d1aba redmine-2.2-integration
Fixed test that was checking if an element belonged to the array. Correctly showing/hiding the Bibtex fields.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Fri, 10 May 2013 11:50:40 +0100 |
parents | 807426fa6017 |
children | 48d9b3ae9e1a |
line wrap: on
line source
class Author < ActiveRecord::Base unloadable has_many :authorships, :dependent => :destroy has_many :publications, :through => :authorships belongs_to :user def <=>(author) name.downcase <=> author.name.downcase end # todo: review usage of scope --lf.20130108 scope :like, lambda {|q| s = "%#{q.to_s.strip.downcase}%" {:conditions => ["LOWER(name) LIKE :s", {:s => s}], :order => 'name' } } end