Skip to content

Commit

Permalink
Merge pull request #138 from kangkyu/kangkyu/auth-token
Browse files Browse the repository at this point in the history
Get ready for token-based authentication (add auth_token field)
  • Loading branch information
kangkyu authored Jul 10, 2024
2 parents 50788db + 0d7eda7 commit 61f2daa
Show file tree
Hide file tree
Showing 9 changed files with 180 additions and 125 deletions.
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

0 comments on commit 61f2daa

Please sign in to comment.