# File lib/rake.rb, line 735
735:   def ruby(*args,&block)
736:     options = (Hash === args.last) ? args.pop : {}
737:     if args.length > 1 then
738:       sh(*([RUBY] + args + [options]), &block)
739:     else
740:       sh("#{RUBY} #{args}", options, &block)
741:     end
742:   end