annotate test/fixtures/files/060719210727_source.rb @ 1070:858f042e8d11 bibplugin_cache

Created a patch for the ProjectsHelper to replace the one previously created for the Projects controller.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 21 Nov 2012 14:42:12 +0000
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