annotate test/fixtures/files/060719210727_source.rb @ 1376:6ba24edae331 luisf

Moved the code in bibliography.js and order_authorships.js from the js files to the view files - so that I can use ERB to build the AJAX call paths - otherwise I woudl have problems with redmine installations in subfolders.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 30 Aug 2013 17:33:05 +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