Skip to content

Commit

Permalink
Rails 7.1 updates (#36)
Browse files Browse the repository at this point in the history
Updated Rails to 7.1 and also bumped all Gems.
  • Loading branch information
bpurinton authored May 31, 2024
1 parent 54812e0 commit cfcd120
Show file tree
Hide file tree
Showing 19 changed files with 299 additions and 275 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "Container",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "firstdraft/appdev-rails-template",
"image": "firstdraft/appdev-rails-7-1-template",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: firstdraft/appdev-rails-template
image: firstdraft/appdev-rails-7-1-template

tasks:
- before: |
Expand Down
1 change: 0 additions & 1 deletion .rspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
--color
--format documentation
--order default
--require spec_helper
10 changes: 4 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.1"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4", ">= 7.0.4.3"
gem "rails", "~> 7.1.3", ">= 7.1.3.2"

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
Expand All @@ -13,7 +13,7 @@ gem "sprockets-rails"
gem "pg", "~> 1.1"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"
gem "puma"

# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
Expand Down Expand Up @@ -75,7 +75,7 @@ end
# ===========
gem "appdev_support"
gem "awesome_print"
gem "devise" # to be removed
gem "devise"
gem "dotenv-rails"
gem "faker"
gem "htmlbeautifier"
Expand All @@ -94,16 +94,14 @@ group :development do
gem "rails-erd"
gem "rufo"
gem "specs_to_readme"
gem "web_git"
end

group :development, :test do
gem "rspec-rails", "~> 6.0.0"
end

group :test do
gem "draft_matchers"#, "0.0.2"#path: "../../my_stuff/draft_matchers"
# gem "draft_matchers"
gem "draft_matchers"
gem "rspec-html-matchers"
gem "webmock"
end
Loading

0 comments on commit cfcd120

Please sign in to comment.