Skip to content

Commit

Permalink
Maintenance: Update various gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed May 2, 2023
1 parent 0d71da7 commit 22c40f4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
36 changes: 18 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ GEM
zeitwerk (~> 2.3)
acts_as_list (1.1.0)
activerecord (>= 4.2)
addressable (2.8.2)
addressable (2.8.4)
public_suffix (>= 2.0.2, < 6.0)
argon2 (2.2.0)
ffi (~> 1.15)
Expand Down Expand Up @@ -177,11 +177,11 @@ GEM
dry-types (>= 1.7, < 2)
ice_nine (~> 0.11)
zeitwerk (~> 2.6)
dry-types (1.7.0)
dry-types (1.7.1)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
dry-inflector (~> 1.0, < 2)
dry-logic (>= 1.4, < 2)
dry-core (~> 1.0)
dry-inflector (~> 1.0)
dry-logic (~> 1.4)
zeitwerk (~> 2.6)
eco (1.0.0)
coffee-script
Expand Down Expand Up @@ -218,7 +218,7 @@ GEM
ffi (>= 1.0.0)
rake
gli (2.21.0)
globalid (1.0.1)
globalid (1.1.0)
activesupport (>= 5.0)
gmail_xoauth (0.4.2)
oauth (>= 0.3.6)
Expand Down Expand Up @@ -289,10 +289,10 @@ GEM
mime-types-data (~> 3.2015)
mime-types-data (3.2023.0218.1)
mini_mime (1.1.2)
mini_portile2 (2.8.1)
mini_portile2 (2.8.2)
minitest (5.18.0)
minitest-profile (0.0.2)
msgpack (1.6.0)
msgpack (1.7.0)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.3.0)
Expand Down Expand Up @@ -375,12 +375,12 @@ GEM
iniparse (~> 1.4)
rexml (~> 3.2)
parallel (1.23.0)
parser (3.2.2.0)
parser (3.2.2.1)
ast (~> 2.4.1)
pg (1.2.3)
power_assert (2.0.2)
power_assert (2.0.3)
promise.rb (0.7.4)
pry (0.14.1)
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
pry-rails (0.3.9)
Expand All @@ -405,7 +405,7 @@ GEM
rack (2.2.7)
rack-attack (6.6.1)
rack (>= 1.0, < 3)
rack-protection (3.0.5)
rack-protection (3.0.6)
rack
rack-proxy (0.7.6)
rack
Expand Down Expand Up @@ -442,7 +442,7 @@ GEM
rake (>= 12.2)
thor (~> 1.0)
rainbow (3.1.1)
raindrops (0.20.0)
raindrops (0.20.1)
rake (13.0.6)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
Expand Down Expand Up @@ -481,9 +481,9 @@ GEM
rubocop-ast (>= 1.28.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.28.0)
rubocop-ast (1.28.1)
parser (>= 3.2.1.0)
rubocop-capybara (2.17.1)
rubocop-capybara (2.18.0)
rubocop (~> 1.41)
rubocop-faker (1.1.0)
faker (>= 2.12.0)
Expand Down Expand Up @@ -560,7 +560,7 @@ GEM
power_assert
thor (1.2.1)
thread_safe (0.3.6)
tilt (2.0.11)
tilt (2.1.0)
time (0.2.2)
date
timeout (0.3.2)
Expand Down Expand Up @@ -592,7 +592,7 @@ GEM
raindrops (~> 0.7)
uri (0.12.1)
vcr (6.1.0)
version_gem (1.1.1)
version_gem (1.1.2)
viewpoint (1.1.1)
httpclient
logging
Expand All @@ -601,7 +601,7 @@ GEM
vite_rails (3.0.14)
railties (>= 5.1, < 8)
vite_ruby (~> 3.0, >= 3.2.2)
vite_ruby (3.3.0)
vite_ruby (3.3.1)
dry-cli (>= 0.7, < 2)
rack-proxy (~> 0.6, >= 0.6.1)
zeitwerk (~> 2.2)
Expand Down
6 changes: 3 additions & 3 deletions spec/system/search_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -595,13 +595,13 @@ def authenticate
it 'does not find the customer' do
fill_in id: 'global-search', with: customer.firstname

expect(page.find('.global-search-menu')).not_to have_content(customer.firstname)
expect(page.find('.global-search-menu')).to have_no_content(customer.firstname)
end

it 'does not find the organization' do
fill_in id: 'global-search', with: organization.name

expect(page.find('.global-search-menu')).not_to have_content(organization.name)
expect(page.find('.global-search-menu')).to have_no_content(organization.name)
end
end

Expand Down Expand Up @@ -641,7 +641,7 @@ def authenticate
it 'does not find the ticket' do
fill_in id: 'global-search', with: ticket.title

expect(page.find('.global-search-menu')).not_to have_content(ticket.title)
expect(page.find('.global-search-menu')).to have_no_content(ticket.title)
end

it 'does find the customer' do
Expand Down

0 comments on commit 22c40f4

Please sign in to comment.