# File lib/rake/file_utils.rb, line 75 75: def ruby(*args,&block) 76: options = (Hash === args.last) ? args.pop : {} 77: if args.length > 1 then 78: sh(*([RUBY] + args + [options]), &block) 79: else 80: sh("#{RUBY} #{args.first}", options, &block) 81: end 82: end