Skip to content

Commit 933b0c0

Browse files
committed
Add frozen string literal
1 parent 6222ea7 commit 933b0c0

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

examples/config.ru

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class App
24
def call(env)
35
[200, { "Content-Type" => "text/plain" }, ["HELLO WORLD!", "Hello"]]

lib/rack-change-password-url.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# frozen_string_literal: true
2+
13
require "rack/change-password-url"

spec/support/mock_app_context.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
shared_context 'mock app' do
24
let(:mock_app) { double 'Example Rack App' }
35

0 commit comments

Comments
 (0)