Skip to content

Commit

Permalink
Update bundler and ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattzollinhofer committed Nov 3, 2019
1 parent 92c3d71 commit 2d816a8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.6.5
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -322,4 +322,4 @@ DEPENDENCIES
web-console

BUNDLED WITH
1.16.1
2.0.2
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<% gmail_provider = resource_class.omniauth_providers.first %>
<%= render partial: 'shared/jumbo',
locals: {
jumbo_text: 'Sign In!!',
jumbo_text: 'Sign In!',
button_text: 'With Gmail',
url: omniauth_authorize_path(resource_name, gmail_provider) } %>
2 changes: 1 addition & 1 deletion spec/features/user_logs_out_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

click_on 'Sign Out'

expect(page).to have_css '.h1', text: 'Sign In!!'
expect(page).to have_css '.h1', text: 'Sign In!'
expect(page).to have_css 'a', text: 'With Gmail'
end
end
2 changes: 1 addition & 1 deletion spec/features/user_visits_homepage_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
scenario 'successfully' do
visit '/'

expect(page).to have_css '.h1', text: 'Sign In!!'
expect(page).to have_css '.h1', text: 'Sign In!'
expect(page).to have_css 'a', text: 'With Gmail'
end
end

0 comments on commit 2d816a8

Please sign in to comment.