Skip to content

Commit

Permalink
Merge pull request #1014 from sul-dlss/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
cbeer authored Jan 5, 2024
2 parents 79bde8b + 9a61534 commit 64cb9d4
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 16 deletions.
18 changes: 10 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ GEM
mime-types
rails (>= 5.2.4, < 7.1)
rgeo-geojson
git (1.18.0)
git (1.19.0)
addressable (~> 2.8)
rchardet (~> 1.8)
globalid (1.2.1)
Expand Down Expand Up @@ -312,13 +312,14 @@ GEM
marcel (1.0.2)
matrix (0.4.2)
method_source (1.0.0)
mime-types (3.5.1)
mime-types (3.5.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.1205)
mini_mime (1.1.5)
minitar (0.9)
minitest (5.20.0)
msgpack (1.7.2)
mutex_m (0.2.0)
net-http-persistent (4.0.2)
connection_pool (~> 2.2)
net-imap (0.4.9)
Expand All @@ -336,9 +337,9 @@ GEM
newrelic_rpm (9.6.0)
base64
nio4r (2.7.0)
nokogiri (1.15.5-x86_64-darwin)
nokogiri (1.16.0-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.15.5-x86_64-linux)
nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4)
okcomputer (1.18.5)
orm_adapter (0.5.0)
Expand Down Expand Up @@ -444,7 +445,7 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-capybara (2.19.0)
rubocop-capybara (2.20.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.24.0)
rubocop (~> 1.33)
Expand Down Expand Up @@ -501,9 +502,10 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.6.9-x86_64-darwin)
sqlite3 (1.6.9-x86_64-linux)
sshkit (1.21.6)
sqlite3 (1.7.0-x86_64-darwin)
sqlite3 (1.7.0-x86_64-linux)
sshkit (1.21.7)
mutex_m
net-scp (>= 1.1.2)
net-ssh (>= 2.8.0)
stringio (3.1.0)
Expand Down
2 changes: 1 addition & 1 deletion spec/features/canonical_urls_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

it 'not Stanford' do
visit solr_document_path 'mit-us-ma-e25zcta5dct-2000'
expect(page).not_to have_css 'link[rel="canonical"]', visible: false
expect(page).to have_no_css 'link[rel="canonical"]', visible: false
end
end
2 changes: 1 addition & 1 deletion spec/features/facets_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
describe 'dc_rights_s' do
it 'handles a query, but not show up in facet bar' do
visit search_catalog_path(q: '', f: { dc_rights_s: ['Restricted'] })
expect(page).not_to have_css '.facet-select', text: 'Rights'
expect(page).to have_no_css '.facet-select', text: 'Rights'
expect(page).to have_css '.filter-name', text: 'Rights'
expect(page).to have_css '.document', count: 2
end
Expand Down
2 changes: 1 addition & 1 deletion spec/features/feedback_form_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
end

it 'feedback form should be hidden' do
expect(page).not_to have_css('#feedback-form', visible: true)
expect(page).to have_no_css('#feedback-form', visible: true)
end

it 'feedback form should be shown filled out and submitted' do
Expand Down
2 changes: 1 addition & 1 deletion spec/features/odc_odbl_license_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
it 'renders page without license logo' do
visit solr_document_path 'stanford-cj936rq6257'
expect(page).to have_css 'dt', text: 'License'
expect(page).not_to have_css '.earthworks-license'
expect(page).to have_no_css '.earthworks-license'
end
end
2 changes: 1 addition & 1 deletion spec/features/record_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
it 'does not have empty values indexed' do
visit solr_document_path('columbia-columbia-landinfo-global-aet')

expect(page).not_to have_css('dt', text: 'Publisher')
expect(page).to have_no_css('dt', text: 'Publisher')
end
end
6 changes: 3 additions & 3 deletions spec/features/unavailable_layer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
expect(page).to have_content 'Harvard'
expect(page).to have_content 'unavailable to preview and download'
end
expect(page).not_to have_content 'Download Shapefile'
expect(page).to have_no_content 'Download Shapefile'
end

it 'iiif layer' do
visit solr_document_path 'princeton-02870w62c'
expect(page).not_to have_content 'unavailable to download'
expect(page).to have_no_content 'unavailable to download'
end

it 'oembed layer' do
visit solr_document_path 'stanford-dt131hw5005'
expect(page).not_to have_content 'unavailable to preview and download'
expect(page).to have_no_content 'unavailable to preview and download'
end

it 'catalog index page should have availablility facets' do
Expand Down

0 comments on commit 64cb9d4

Please sign in to comment.