Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.8
ruby-version: 4.0.1
bundler-cache: true

- name: Run linters
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.8
ruby-version: 4.0.1
bundler-cache: true

- name: Install library for postgres
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.8
4.0.1
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.4.8
ruby 4.0.1
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.4.8"
ruby "4.0.1"

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem "rails", "~> 8.1"
gem "rails", "~> 8.1.2"
# Use pg as the database for Active Record
gem "pg"
# Use Puma as the app server
Expand All @@ -26,12 +26,13 @@ gem "jbuilder"

# Use Redis adapter to run Action Cable in production
gem "redis"
gem "ostruct"

# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
gem "image_processing", "~> 1.14"

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
Expand Down Expand Up @@ -61,18 +62,18 @@ end
group :test do
# Adds support for Capybara system testing and selenium driver
gem "capybara"
gem "selenium-webdriver"
gem "selenium-webdriver", ">= 4.10", "< 5"
# Easy installation and use of web drivers to run system tests with browsers
gem "rspec-rails"
gem "webdrivers"
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[windows mswin jruby]
gem "tzinfo-data", platforms: %i[windows jruby]

# Uploadcare-rails provides unified API interface to Uploadcare API
gem "uploadcare-rails", git: "https://github.com/uploadcare/uploadcare-rails.git", branch: "main"
gem "uploadcare-ruby", git: "https://github.com/uploadcare/uploadcare-ruby.git", branch: "main"
gem "uploadcare-rails", git: "https://github.com/uploadcare/uploadcare-rails.git", branch: "gem-rewrite"
gem "uploadcare-ruby", git: "https://github.com/uploadcare/uploadcare-ruby.git", branch: "v2-rewrite-2"

# Use MongoDB for the database, with Mongoid as the ODM
gem "mongoid", "< 10"
Loading