summary refs log tree commit
path: root/lib/rack/handler/thin.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/handler/thin.rb')
-rw-r--r--lib/rack/handler/thin.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rack/handler/thin.rb b/lib/rack/handler/thin.rb
index ca880646..100dfd11 100644
--- a/lib/rack/handler/thin.rb
+++ b/lib/rack/handler/thin.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 require "thin"
 require "thin/server"
 require "thin/logging"
@@ -8,7 +10,7 @@ require "rack/chunked"
 module Rack
   module Handler
     class Thin
-      def self.run(app, options={})
+      def self.run(app, options = {})
         environment  = ENV['RACK_ENV'] || 'development'
         default_host = environment == 'development' ? 'localhost' : '0.0.0.0'