# File lib/active_support/testing/performance/rubinius.rb, line 39
        def record
          return unless @supported

          if(full_profile_options[:formats].include?(:flat))
            create_path_and_open_file(:flat) do |file|
              @profiler.show(file)
            end
          end

          if(full_profile_options[:formats].include?(:graph))
            create_path_and_open_file(:graph) do |file|
              @profiler.show(file)
            end
          end
        end