Skip to content
Open
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
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.0.4'
gem 'rails', '~> 7.0.8', '>= 7.0.8.4'

# devise
gem 'devise'
gem 'devise', '>= 4.9.0'

gem 'rack-cors'
# authoraization
gem 'cancancan'

# rspec
gem 'rspec-rails'
gem 'rspec-rails', '>= 6.0.2'

# ffi & chalidprocess
gem 'childprocess'
Expand All @@ -30,13 +30,13 @@ gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0'

# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
gem 'importmap-rails', '>= 1.1.6'

# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails'
gem 'turbo-rails', '>= 1.3.3'

# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
gem 'stimulus-rails', '>= 1.2.2'

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
Expand Down Expand Up @@ -70,7 +70,7 @@ end

group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
gem 'web-console', '>= 4.2.1'

# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
Expand Down
Loading