Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '20'
node-version: "20"
- name: Get Yarn cache directory path
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Setup cache key and directory for node_modules cache
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.5
38 changes: 16 additions & 22 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.3.0'
ruby '3.4.5'

gem 'actionpack', '>= 6.1.3.2'
gem 'addressable', '>= 2.8.0'
gem 'autoprefixer-rails'
gem 'aws-sdk-s3', require: false
gem 'bootsnap', '>= 1.4.4', require: false
gem 'browser', '~> 5.3'
Expand All @@ -15,36 +13,35 @@ gem 'faraday-http-cache'
gem 'font-awesome-sass'
gem 'geocoder'
gem 'groupdate'
gem 'grover', '~> 1.0'
gem 'grover', '~> 1.1'
gem 'image_processing', '~> 1.2'
gem 'jbuilder', '~> 2.7'
gem 'nokogiri', '>= 1.11.4'
gem 'octokit', '~> 4.20'
gem 'octokit', '~> 6.0'
gem 'ogp'
gem 'pagy', '~> 3.5'
gem 'ostruct'
gem 'faraday-retry'
gem 'pagy', '~> 6.0'
gem 'pg', '~> 1.1'
gem 'postmark-rails'
gem 'prawn'
gem 'psych', '< 4'
gem 'propshaft'
gem 'puma', '>= 5.3.1'
gem 'pundit', '~> 2.1'
gem 'rack-canonical-host'
gem 'rails', '~> 6.1.3.1'
gem 'rails_admin', '~> 2.0'
gem 'redis', '~> 4.0'
gem 'redis-rails'
gem 'rails', '~> 8.1.0'
gem 'rails_admin', '~> 3.0'
gem 'redis', '~> 5.0'
gem 'rest-client'
gem 'sass-rails', '>= 6'
gem 'sidekiq'
gem 'sidekiq', '~> 7.0'
gem 'sidekiq-failures', '~> 1.0'
gem 'simple_form'
gem 'simple_form-tailwind'
gem 'tailwindcss-rails', '~> 0.3.3'
gem 'turbolinks', '~> 5'
gem 'simple_form', '~> 5.3'
gem 'turbo-rails'
gem 'stimulus-rails'
gem 'twitter-text'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'view_component'
gem 'webpacker', '6.0.0.beta.6'
gem 'importmap-rails'

group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
Expand All @@ -60,9 +57,7 @@ end
group :development do
gem 'bullet'
gem 'letter_opener'
gem 'listen', '~> 3.3'
gem 'rack-mini-profiler', '~> 2.0'
gem 'spring'
gem 'rack-mini-profiler', '~> 3.0'
gem 'web-console', '>= 4.1.0'
end

Expand All @@ -71,5 +66,4 @@ group :test do
gem 'rspec-sidekiq'
gem 'selenium-webdriver'
gem 'sidekiq-status'
gem 'webdrivers'
end
Loading
Loading