annotate test/fixtures/files/060719210727_source.rb @ 702:3eb64cb3c7ac feature_36

Link authorships from publications detail page as well as publications list. Also minor text update
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Mon, 19 Sep 2011 17:00:35 +0100
parents 513646585e45
children
rev   line source
Chris@0 1 # The Greeter class
Chris@0 2 class Greeter
Chris@0 3 def initialize(name)
Chris@0 4 @name = name.capitalize
Chris@0 5 end
Chris@0 6
Chris@0 7 def salute
Chris@0 8 puts "Hello #{@name}!"
Chris@0 9 end
Chris@0 10 end