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

pulibrary / allsearch_api / aa1cbf92-a6e7-4ca9-bad6-dfcce6f1afbc

01 Aug 2025 03:44PM UTC coverage: 99.514%. Remained the same
aa1cbf92-a6e7-4ca9-bad6-dfcce6f1afbc

push

circleci

sandbergja
Explicitly include Rake in Gemfile

When we deployed, it gave various errors:
* can't find executable rake for gem rake.
* cannot load such file -- net/ssh/proxy/command (LoadError)
* cannot load such file -- net/scp (LoadError)

This commit explicitly includes rake, net-scp, and net-ssh in the Gemfile
to see if it resolves the issue.

1024 of 1029 relevant lines covered (99.51%)

92.23 hits per line

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

100.0
/app/models/findingaids_document.rb
1
# frozen_string_literal: true
2

3
# This class is responsible for getting relevant
4
# metadata from PULFALight's JSON
5
class FindingaidsDocument < Document
3✔
6
  include SolrDocument
3✔
7

8
  private
3✔
9

10
  def service
3✔
11
    'findingaids'
33✔
12
  end
13

14
  # Use the collection name as the title?
15
  def title
3✔
16
    document[:collection_ssm]&.first
33✔
17
  end
18

19
  def creator
3✔
20
    document[:creator_ssm]&.first
33✔
21
  end
22

23
  # No sensible field to map to this currently
24
  def publisher
3✔
25
    # tbd - nothing in the current json that seems relevant
26
  end
27

28
  def type
3✔
29
    document[:level_ssm]&.first
33✔
30
  end
31

32
  # This field may contain html
33
  def description
3✔
34
    sanitize document[:abstract_ssm]&.first
33✔
35
  end
36

37
  def doc_keys
3✔
38
    [:access_restriction, :date, :extent, :repository]
33✔
39
  end
40

41
  def repository
3✔
42
    document[:repository_ssm]&.first
33✔
43
  end
44

45
  def extent
3✔
46
    document[:extent_ssm]&.to_sentence
33✔
47
  end
48

49
  def access_restriction
3✔
50
    document[:accessrestrict_ssm]&.first
33✔
51
  end
52

53
  def date
3✔
54
    document[:normalized_date_ssm]&.first
33✔
55
  end
56
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