Skip to content

Commit

Permalink
Merge pull request #114 from fablabbcn/companies-search-form-improvem…
Browse files Browse the repository at this point in the history
…ents-turboframes

Companies search form improvements w/ turboframes
  • Loading branch information
timcowlishaw authored Feb 27, 2024
2 parents 400443d + b767c4e commit c304546
Show file tree
Hide file tree
Showing 36 changed files with 2,153 additions and 2,500 deletions.
16 changes: 11 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ gem 'omniauth-linkedin-oauth2'
gem 'omniauth-google-oauth2'
gem "sentry-rails"
gem "sentry-ruby"
gem "sprockets-rails"
gem "turbo-rails"

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
gem 'rails', '~> 7.0'
# Use sqlite3 as the database for Active Record
#gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
Expand All @@ -44,7 +46,7 @@ gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

Expand All @@ -54,6 +56,10 @@ gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false


gem "uri", "0.13.0"
gem "net-http"

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
Expand All @@ -68,11 +74,11 @@ group :development do
# gem 'i18n-debug'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'listen', '~> 3.5'
gem 'rack-mini-profiler'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'spring', '~> 4.1'
gem 'spring-watcher-listen'
end

group :test do
Expand Down
Loading

0 comments on commit c304546

Please sign in to comment.