Sha256: 568d16d657e75fca1a66de192e4a5becee47474f3ded1edd4cff710f9a9edb03

Contents?: true

Size: 855 Bytes

Versions: 5

Compression:

Stored size: 855 Bytes

Contents

.stats.d-flex
  .card.col-6
    .card-body
      %h4.card-title Files with more allocations
      %table.table
        %thead.bg-secondary.text-white
          %tr.d-flex
            %th.col-10 File
            %th.col-2 Allocations
        %tbody
          - @instance.files_with_more_allocations(4).each do |file|
            %tr.d-flex
              %td.col-10.text-primary= file[0]
              %td.col-2= file[1]

  .card.col-6
    .card-body
      %h4.card-title Files that consume more memory
      %table.table
        %thead.bg-secondary.text-white
          %tr.d-flex
            %th.col-10 File
            %th.col-2 Allocations
        %tbody
          - @instance.files_that_use_more_memory(4).each do |file|
            %tr.d-flex
              %td.col-10.text-primary= file[0]
              %td.col-2= "~ #{number_to_human_size  file[1]}"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
better_rails_debugger-0.2.1 app/views/better_rails_debugger/group_instances/_stats_summary.html.haml
better_rails_debugger-0.2.0 app/views/better_rails_debugger/group_instances/_stats_summary.html.haml
better_rails_debugger-0.1.1 app/views/better_rails_debugger/group_instances/_stats_summary.html.haml
better_rails_debugger-0.0.4 app/views/better_rails_debugger/group_instances/_stats_summary.html.haml
better_rails_debugger-0.0.3 app/views/better_rails_debugger/group_instances/_stats_summary.html.haml