Skip to content

Commit

Permalink
avances
Browse files Browse the repository at this point in the history
  • Loading branch information
luciagirasoles committed Sep 2, 2024
1 parent 25223a4 commit ddd0aeb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 14 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 3.2'
ruby '~> 3.3.4'

gem 'devise', '~>4.9.2'

Expand All @@ -15,7 +15,7 @@ gem 'rails', '~> 7.0.8'
# Use Sass to process CSS
gem 'sassc-rails', '~> 2.1.2'

gem 'shakapacker', '= 7.2.1'
gem 'shakapacker', '= 7.2.3'
gem 'slack-ruby-client', '~> 2.0.0'

gem 'bootsnap', '>= 1.4.4', require: false
Expand Down Expand Up @@ -73,8 +73,9 @@ end
group :test do
gem 'capybara', '>=3.39.2'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'selenium-webdriver', '~> 4.15'
gem 'shoulda-matchers', '~>5.3.0'
gem 'selenium-webdriver', '~> 4.24'
gem 'launchy', '~>3.0.1'
end

gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
Expand Down
12 changes: 9 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ GEM
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
childprocess (5.1.0)
logger (~> 1.5)
coderay (1.1.3)
concurrent-ruby (1.3.4)
crass (1.0.6)
Expand Down Expand Up @@ -183,6 +185,9 @@ GEM
jwt (2.8.2)
base64
language_server-protocol (3.17.0.3)
launchy (3.0.1)
addressable (~> 2.8)
childprocess (~> 5.0)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
Expand Down Expand Up @@ -350,7 +355,7 @@ GEM
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
semantic_range (3.0.0)
shakapacker (7.2.1)
shakapacker (7.2.3)
activesupport (>= 5.2)
package_json
rack-proxy (>= 0.6.1)
Expand Down Expand Up @@ -429,6 +434,7 @@ DEPENDENCIES
jbuilder (~> 2.7)
jsbundling-rails (~> 1.1)
jwt (>= 2.6.0)
launchy (~> 3.0.1)
listen (~> 3.3)
nokogiri (~> 1.16)
pagy (~> 6.2)
Expand All @@ -443,8 +449,8 @@ DEPENDENCIES
rspec-rails (~> 6.1.1)
rubocop (~> 1.22)
sassc-rails (~> 2.1.2)
selenium-webdriver (~> 4.15)
shakapacker (= 7.2.1)
selenium-webdriver (~> 4.24)
shakapacker (= 7.2.3)
shoulda-matchers (~> 5.3.0)
slack-ruby-client (~> 2.0.0)
stimulus-rails (~> 1.2.1)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"react-helmet-async": "^1.3.0",
"sass": "^1.60.0",
"sass-loader": "^13.2.0",
"shakapacker": "7.2.1",
"shakapacker": "7.2.3",
"slim-select": "^2.6.0",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.1",
Expand Down
1 change: 0 additions & 1 deletion spec/factories/events.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
sequence(:title) { |n| "Title #{n}" }
sequence(:location) { |n| "Location #{n}" }
sequence(:description) { |n| "Description #{n}" }
sequence(:panel_video_link) { |n| "Panel_video_link #{n}" }
date { 30.days.from_now }
end
end
4 changes: 2 additions & 2 deletions spec/system/visit_site_pages_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
end

it 'visits past meetup today' do
meetup = create(:event, date: Date.today - 30.days)
meetup = create(:event, date: Date.new(2024, 2, 17), panel_video_link: nil)

visit "/meetups/#{meetup.date.year}/#{meetup.date.month}/#{meetup.date.day}"
visit '/meetups/2024/2/17'

expect(page).to have_text(meetup.title)
end
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ddd0aeb

Please sign in to comment.