Replace deprecated dotenv-rails gem with dotenv gem (#29173)
				
					
				
			This commit is contained in:
		
							
								
								
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							@@ -12,7 +12,7 @@ gem 'thor', '~> 1.2'
 | 
				
			|||||||
# For why irb is in the Gemfile, see: https://ruby.social/@st0012/111444685161478182
 | 
					# For why irb is in the Gemfile, see: https://ruby.social/@st0012/111444685161478182
 | 
				
			||||||
gem 'irb', '~> 1.8'
 | 
					gem 'irb', '~> 1.8'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
gem 'dotenv-rails', '~> 2.8'
 | 
					gem 'dotenv'
 | 
				
			||||||
gem 'haml-rails', '~>2.0'
 | 
					gem 'haml-rails', '~>2.0'
 | 
				
			||||||
gem 'pg', '~> 1.5'
 | 
					gem 'pg', '~> 1.5'
 | 
				
			||||||
gem 'pghero'
 | 
					gem 'pghero'
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -220,10 +220,7 @@ GEM
 | 
				
			|||||||
    domain_name (0.6.20240107)
 | 
					    domain_name (0.6.20240107)
 | 
				
			||||||
    doorkeeper (5.6.9)
 | 
					    doorkeeper (5.6.9)
 | 
				
			||||||
      railties (>= 5)
 | 
					      railties (>= 5)
 | 
				
			||||||
    dotenv (2.8.1)
 | 
					    dotenv (3.1.0)
 | 
				
			||||||
    dotenv-rails (2.8.1)
 | 
					 | 
				
			||||||
      dotenv (= 2.8.1)
 | 
					 | 
				
			||||||
      railties (>= 3.2)
 | 
					 | 
				
			||||||
    drb (2.2.1)
 | 
					    drb (2.2.1)
 | 
				
			||||||
    ed25519 (1.3.0)
 | 
					    ed25519 (1.3.0)
 | 
				
			||||||
    elasticsearch (7.13.3)
 | 
					    elasticsearch (7.13.3)
 | 
				
			||||||
@@ -848,7 +845,7 @@ DEPENDENCIES
 | 
				
			|||||||
  devise_pam_authenticatable2 (~> 9.2)
 | 
					  devise_pam_authenticatable2 (~> 9.2)
 | 
				
			||||||
  discard (~> 1.2)
 | 
					  discard (~> 1.2)
 | 
				
			||||||
  doorkeeper (~> 5.6)
 | 
					  doorkeeper (~> 5.6)
 | 
				
			||||||
  dotenv-rails (~> 2.8)
 | 
					  dotenv
 | 
				
			||||||
  ed25519 (~> 1.3)
 | 
					  ed25519 (~> 1.3)
 | 
				
			||||||
  email_spec
 | 
					  email_spec
 | 
				
			||||||
  fabrication (~> 2.30)
 | 
					  fabrication (~> 2.30)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,7 +52,7 @@ require_relative '../lib/active_record/batches'
 | 
				
			|||||||
require_relative '../lib/simple_navigation/item_extensions'
 | 
					require_relative '../lib/simple_navigation/item_extensions'
 | 
				
			||||||
require_relative '../lib/http_extensions'
 | 
					require_relative '../lib/http_extensions'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Dotenv::Railtie.load
 | 
					Dotenv::Rails.load
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
 | 
					Bundler.require(:pam_authentication) if ENV['PAM_ENABLED'] == 'true'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user