Skip to content

Commit c25248f

Browse files
committed
Reboot application from scratch
1 parent 147ffdd commit c25248f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+526
-511
lines changed

.gitignore

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
!/tmp/pids/
1919
!/tmp/pids/.keep
2020

21+
# Ignore uploaded files in development.
22+
/storage/*
23+
!/storage/.keep
24+
/tmp/storage/*
25+
!/tmp/storage/
26+
!/tmp/storage/.keep
2127

2228
/public/assets
2329

2430
# Ignore master key for decrypting credentials and more.
2531
/config/master.key
26-
27-
/app/assets/builds/*
28-
!/app/assets/builds/.keep
29-
30-
/node_modules
31-
.env

.rubocop.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require:
2+
- rubocop-capybara
23
- rubocop-rails
34

45
AllCops:

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.2.2

Gemfile

+31-23
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
source 'https://rubygems.org'
44
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
55

6-
ruby '3.0.0'
6+
ruby '3.2.2'
77

88
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
9-
gem 'rails', '~> 7.0.0.alpha2'
9+
gem 'rails', '~> 7.0.8'
10+
11+
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
12+
gem 'sprockets-rails'
1013

1114
# Use postgresql as the database for Active Record
1215
gem 'pg', '~> 1.1'
@@ -15,61 +18,66 @@ gem 'pg', '~> 1.1'
1518
gem 'puma', '~> 5.0'
1619

1720
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
18-
gem 'importmap-rails', '>= 0.3.4'
21+
gem 'importmap-rails'
1922

2023
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
21-
gem 'turbo-rails', '>= 0.7.11'
24+
gem 'turbo-rails'
2225

2326
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
24-
gem 'stimulus-rails', '>= 0.4.0'
27+
gem 'stimulus-rails'
2528

26-
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
27-
gem 'cssbundling-rails', '>= 0.1.0'
29+
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
30+
gem 'jbuilder'
2831

29-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
30-
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
32+
# Use Redis adapter to run Action Cable in production
33+
gem 'redis', '~> 4.0'
3134

32-
# Reduces boot times through caching; required in config/boot.rb
33-
gem 'bootsnap', '>= 1.4.4', require: false
35+
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
36+
# gem "kredis"
3437

3538
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
3639
# gem "bcrypt", "~> 3.1.7"
3740

41+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42+
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
43+
44+
# Reduces boot times through caching; required in config/boot.rb
45+
gem 'bootsnap', require: false
46+
3847
# Use Sass to process CSS
39-
# gem "sassc-rails", "~> 2.1"
48+
# gem "sassc-rails"
4049

41-
group :development, :test do
42-
# Start debugger with binding.b [https://github.com/ruby/debug]
43-
gem 'debug', '>= 1.0.0', platforms: %i[mri mingw x64_mingw]
50+
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
51+
# gem "image_processing", "~> 1.2"
4452

45-
gem 'dotenv-rails'
53+
group :development, :test do
54+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
55+
gem 'debug', platforms: %i[mri mingw x64_mingw]
4656
end
4757

4858
group :development do
4959
gem 'brakeman'
5060
gem 'reek'
5161
gem 'rubocop'
62+
gem 'rubocop-capybara'
5263
gem 'rubocop-rails'
53-
gem 'scss_lint', require: false
64+
5465
# Use console on exceptions pages [https://github.com/rails/web-console]
55-
gem 'web-console', '>= 4.1.0'
66+
gem 'web-console'
5667

5768
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
58-
# gem "rack-mini-profiler", ">= 2.3.3"
69+
# gem "rack-mini-profiler"
5970

6071
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
6172
# gem "spring"
6273
end
6374

6475
group :test do
6576
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
66-
gem 'capybara', '>= 3.26'
77+
gem 'capybara'
6778
gem 'selenium-webdriver'
68-
gem 'webdrivers'
6979
end
7080

7181
gem 'chartkick'
72-
7382
gem 'groupdate'
74-
7583
gem 'ynab'

0 commit comments

Comments
 (0)