lib/generators/templates/initializer.rb in sandboxy-3.0.0 vs lib/generators/templates/initializer.rb in sandboxy-3.0.1
- old
+ new
@@ -1,13 +1,13 @@
-Sandboxy.configure do |config|
-
- # Set your environment default. This is the environment that your app boots with.
- # By default it gets refreshed with every new request to your server.
- # Takes a string.
- # config.default = 'live'
-
- # Retain your current app environment on new requests.
- # If set to `false`, your app will return to your default environment on every new request.
- # Takes a boolean.
- # config.retain = false
-
-end
+# frozen_string_literal: true
+
+Sandboxy.configure do |config|
+ # Set your environment default. This is the environment that your app boots
+ # with. By default it gets refreshed with every new request to your server.
+ # Takes a string.
+ # config.default = 'live'
+
+ # Retain your current app environment on new requests. If set to `false`, your
+ # app will return to your default environment on every new request. Takes a
+ # boolean.
+ # config.retain = false
+end