Class: ActiveSupport::EnvironmentInquirer

Inherits:
StringInquirer show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/environment_inquirer.rb

Overview

:nodoc:

Constant Summary collapse

DEFAULT_ENVIRONMENTS =
["development", "test", "production"]

Constants inherited from String

String::BLANK_RE, String::ENCODED_BLANKS, String::ENCODING_BINARY

Constants included from Diff::LCS

Diff::LCS::BalancedCallbacks, Diff::LCS::PATCH_MAP, Diff::LCS::SequenceCallbacks, Diff::LCS::VERSION

Instance Method Summary collapse

Methods inherited from String

#_blankslate_as_name, #acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #deconstantize, #demodulize, #exclude?, #first, #foreign_key, #from, #html_safe, #humanize, #in_time_zone, #indent, #indent!, #inquiry, #is_utf8?, #last, #mb_chars, #parameterize, #pluralize, #remove, #remove!, #safe_constantize, #singularize, #squish, #squish!, #strip_heredoc, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #to_xs, #truncate, #truncate_bytes, #truncate_words, #underscore, #upcase_first

Methods included from Diff::LCS

callbacks_for, #diff, diff, diff_traversal, #lcs, lcs, patch, #patch, #patch!, patch!, #patch_me, #sdiff, sdiff, #traverse_balanced, traverse_balanced, traverse_sequences, #traverse_sequences, #unpatch, #unpatch!, unpatch!, #unpatch_me

Constructor Details

#initialize(env) ⇒ EnvironmentInquirer

Returns a new instance of EnvironmentInquirer.



8
9
10
11
12
13
14
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activesupport-7.0.4/lib/active_support/environment_inquirer.rb', line 8

def initialize(env)
  super(env)

  DEFAULT_ENVIRONMENTS.each do |default|
    instance_variable_set :"@#{default}", env == default
  end
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveSupport::StringInquirer