• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / tigerdata-app / e7a92392-be4c-4214-89f9-e70084a3165f

03 Nov 2025 06:52PM UTC coverage: 46.881% (-44.5%) from 91.394%
e7a92392-be4c-4214-89f9-e70084a3165f

Pull #2128

circleci

hectorcorrea
Rubocop
Pull Request #2128: Project Show page now displays metadata straight from Mediaflux

35 of 61 new or added lines in 6 files covered. (57.38%)

764 existing lines in 37 files now uncovered.

1646 of 3511 relevant lines covered (46.88%)

69.44 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/app/presenters/project_dashboard_presenter.rb
1
# frozen_string_literal: true
2
class ProjectDashboardPresenter < ProjectShowPresenter
×
3
  include ActionView::Helpers::DateHelper
×
4

5
  delegate :to_model, :updated_at, to: :project
×
6

7
  def type
×
8
    if storage_performance_expectations["approved"].nil?
×
9
      "Requested #{storage_performance_expectations['requested']}"
×
10
    else
×
11
      storage_performance_expectations["approved"]
×
12
    end
×
13
  end
×
14

15
  def latest_file_list_time
×
16
    requests = FileInventoryRequest.where(project_id: project.id).order(completion_time: :desc)
×
17
    if requests.empty?
×
18
      "No Downloads"
×
19
    elsif requests.first.completion_time
×
20
      "Prepared #{time_ago_in_words(requests.first.completion_time)} ago"
×
21
    else
×
22
      "Preparing now"
×
23
    end
×
24
  end
×
25

26
  def last_activity
×
27
    if project_metadata.updated_on.nil?
×
28
      "Not yet active"
×
29
    else
×
30
      "#{remove_about time_ago_in_words(project_metadata.updated_on)} ago"
×
31
    end
×
32
  end
×
33

34
  def role(user)
×
35
    if data_sponsor == user.uid
×
36
      "Sponsor"
×
37
    elsif data_manager == user.uid
×
38
      "Data Manager"
×
39
    else
×
40
      "Data User"
×
41
    end
×
42
  end
×
43

44
  def path
×
NEW
45
    project_directory
×
46
  end
×
47

48
  # Removes "about" (as in "about 1 month ago") from time_ago_in_words
49
  def remove_about(time_ago)
×
50
    time_ago.gsub("about ", "")
×
51
  end
×
52
end
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc