File: env_helpers.rb

package info (click to toggle)
rails 2%3A7.2.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,348 kB
  • sloc: ruby: 349,797; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (27 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require "rails"

module EnvHelpers
  private
    def with_rails_env(env, &block)
      Rails.instance_variable_set :@_env, nil
      switch_env "RAILS_ENV", env do
        switch_env "RACK_ENV", nil, &block
      end
    end

    def with_rack_env(env, &block)
      Rails.instance_variable_set :@_env, nil
      switch_env "RACK_ENV", env do
        switch_env "RAILS_ENV", nil, &block
      end
    end

    def switch_env(key, value)
      old, ENV[key] = ENV[key], value
      yield
    ensure
      ENV[key] = old
    end
end