annotate test/fixtures/files/060719210727_source.rb @ 1142:7c3de6c7b7f5 redmine-2.2-integration

Syntax fixes
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 10 Jan 2013 15:25:28 +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