Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get ready for token-based authentication (add auth_token field) #138

Merged
merged 4 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
/db/test.sqlite3-shm
/db/test.sqlite3-wal

# Ignore all logfiles and tempfiles.
/log/*
Expand Down
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
ruby '3.1.4'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.4'
gem 'rails', '~> 7.1.3'
# Use SCSS for stylesheets
gem 'sassc-rails', '~> 2.1.2'
# Use Uglifier as compressor for JavaScript assets
Expand All @@ -14,7 +14,7 @@ gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jbuilder', '~> 2.11'
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc

Expand All @@ -28,12 +28,12 @@ gem 'bcrypt', '~> 3.1.7'
# gem 'capistrano-rails', group: :development

# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'debug', group: [:development, :test]

gem 'haml'
gem 'haml-rails'
gem 'bootstrap', '~> 4.6.1'
gem 'sprockets-rails', '~> 3.4.2'
gem 'sprockets-rails', '~> 3.5.1'

# gem 'font-awesome-sass', '~> 4.2.0'
gem 'font-awesome-rails', '~> 4.7.0.0'
Expand All @@ -44,10 +44,10 @@ gem 'turbo-rails'
gem 'importmap-rails'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootsnap', '>= 1.18.0', require: false

group :development, :test do
gem 'rspec-rails', '~> 5.0'
gem 'rspec-rails', '~> 6.0'
end

group :test do
Expand All @@ -65,4 +65,5 @@ group :production do
gem 'rails_12factor'
end

gem 'puma', '< 7'
gem 'puma', '>= 5.0'
gem "redis", ">= 4.0.1"
Loading
Loading