Skip to content

Commit

Permalink
making rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtoddmathes committed Feb 17, 2024
1 parent f57128f commit b358eb1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rails_root/app/controllers/about_controller.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

# AboutController
class AboutController < ApplicationController
def index; end
def index; end
end
1 change: 1 addition & 0 deletions rails_root/app/mailers/application_mailer.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

# ApplicationMailer
class ApplicationMailer < ActionMailer::Base
default from: '[email protected]'
layout 'mailer'
Expand Down
1 change: 1 addition & 0 deletions rails_root/spec/helpers/about_helper_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# frozen_string_literal: true
# require 'rails_helper'

# # Specs in this file have access to a helper object that includes
Expand Down
1 change: 1 addition & 0 deletions rails_root/spec/jobs/application_job_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# frozen_string_literal: true
# # require 'rails_helper'

# RSpec.describe ApplicationJob, type: :job do
Expand Down
1 change: 1 addition & 0 deletions rails_root/spec/mailers/application_mailer_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# frozen_string_literal: true
# require 'rails_helper'

# RSpec.describe ApplicationMailer, type: :mailer do
Expand Down

0 comments on commit b358eb1

Please sign in to comment.