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

v3.1.0 changes. #15

Merged
merged 4 commits into from
Dec 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 @@ -30,3 +30,5 @@

# Ignore simplecov coverage report
/coverage

/config/master.key
7 changes: 6 additions & 1 deletion Capfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# default requires
require 'capistrano/setup'
require 'capistrano/deploy'

# Git SCM plugin
require 'capistrano/scm/git'
install_plugin Capistrano::SCM::Git

# additional optional modules used by clio
require 'capistrano/rvm'
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
require 'capistrano/passenger'
require 'capistrano/passenger'
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source 'https://rubygems.org'

ruby "3.2.2"

gem 'rails', '~> 7.1.2'
gem 'rails', '~> 7.2.2'
gem 'mysql2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
Expand Down Expand Up @@ -52,13 +52,15 @@ group :development, :test do

# simplecov for test coverage
gem 'simplecov', '~> 0.22', require: false

gem 'factory_bot_rails'
end

group :development do
# Use Puma as the app server
gem 'puma'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.17.3', require: false
gem 'capistrano', '~> 3.19.2', require: false
# Rails and Bundler integrations were moved out from Capistrano 3
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
Expand Down
Loading
Loading