Welcome to mirror list, hosted at ThFree Co, Russian Federation.

override_rails_constants.rb « metrics_server - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76e49edfbb04cf6e614963e7683e204378c0626a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# rubocop:disable Naming/FileName
# frozen_string_literal: true

require 'active_support/environment_inquirer'

module Rails
  extend self

  def env
    @env ||= ActiveSupport::EnvironmentInquirer.new(
      ENV["RAILS_ENV"].presence || ENV["RACK_ENV"].presence || "development"
    )
  end

  def root
    Pathname.new(File.expand_path('..', __dir__))
  end
end

# rubocop:enable Naming/FileName