Skip to content

Commit a293278

Browse files
lizkenyonclaude
andcommitted
Fix RuboCop offenses in bin/rails files
Add frozen string literal comments and proper spacing after magic comments to comply with style guidelines. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 989315d commit a293278

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

bin/rails

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
# This file loads the test dummy Rails app for running gem tests
35
APP_ROOT = File.expand_path("..", __dir__)
46
APP_PATH = File.expand_path("test/dummy/config/application", APP_ROOT)

test/dummy/bin/rails

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
24
APP_PATH = File.expand_path("../config/application", __dir__)
35
require_relative "../config/boot"
46
require "rails/commands"

0 commit comments

Comments
 (0)