Bump cld3 from 3.2.6 to 3.3.0 (#13107)
* Bump cld3 from 3.2.6 to 3.3.0 Bumps [cld3](https://github.com/akihikodaki/cld3-ruby) from 3.2.6 to 3.3.0. - [Release notes](https://github.com/akihikodaki/cld3-ruby/releases) - [Commits](https://github.com/akihikodaki/cld3-ruby/compare/v3.2.6...v3.3.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Fix compatibility with cld3 3.3.0 Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							b154428e14
						
					
				
				
					commit
					7088633ae1
				
			
							
								
								
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							@@ -35,7 +35,7 @@ gem 'browser'
 | 
				
			|||||||
gem 'charlock_holmes', '~> 0.7.7'
 | 
					gem 'charlock_holmes', '~> 0.7.7'
 | 
				
			||||||
gem 'iso-639'
 | 
					gem 'iso-639'
 | 
				
			||||||
gem 'chewy', '~> 5.1'
 | 
					gem 'chewy', '~> 5.1'
 | 
				
			||||||
gem 'cld3', '~> 3.2.6'
 | 
					gem 'cld3', '~> 3.3.0'
 | 
				
			||||||
gem 'devise', '~> 4.7'
 | 
					gem 'devise', '~> 4.7'
 | 
				
			||||||
gem 'devise-two-factor', '~> 3.1'
 | 
					gem 'devise-two-factor', '~> 3.1'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -160,7 +160,7 @@ GEM
 | 
				
			|||||||
      elasticsearch (>= 2.0.0)
 | 
					      elasticsearch (>= 2.0.0)
 | 
				
			||||||
      elasticsearch-dsl
 | 
					      elasticsearch-dsl
 | 
				
			||||||
    chunky_png (1.3.11)
 | 
					    chunky_png (1.3.11)
 | 
				
			||||||
    cld3 (3.2.6)
 | 
					    cld3 (3.3.0)
 | 
				
			||||||
      ffi (>= 1.1.0, < 1.12.0)
 | 
					      ffi (>= 1.1.0, < 1.12.0)
 | 
				
			||||||
    climate_control (0.2.0)
 | 
					    climate_control (0.2.0)
 | 
				
			||||||
    cocaine (0.5.8)
 | 
					    cocaine (0.5.8)
 | 
				
			||||||
@@ -681,7 +681,7 @@ DEPENDENCIES
 | 
				
			|||||||
  capybara (~> 3.31)
 | 
					  capybara (~> 3.31)
 | 
				
			||||||
  charlock_holmes (~> 0.7.7)
 | 
					  charlock_holmes (~> 0.7.7)
 | 
				
			||||||
  chewy (~> 5.1)
 | 
					  chewy (~> 5.1)
 | 
				
			||||||
  cld3 (~> 3.2.6)
 | 
					  cld3 (~> 3.3.0)
 | 
				
			||||||
  climate_control (~> 0.2)
 | 
					  climate_control (~> 0.2)
 | 
				
			||||||
  concurrent-ruby
 | 
					  concurrent-ruby
 | 
				
			||||||
  connection_pool
 | 
					  connection_pool
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,8 +52,10 @@ class LanguageDetector
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  def detect_language_code(text)
 | 
					  def detect_language_code(text)
 | 
				
			||||||
    return if unreliable_input?(text)
 | 
					    return if unreliable_input?(text)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    result = @identifier.find_language(text)
 | 
					    result = @identifier.find_language(text)
 | 
				
			||||||
    iso6391(result.language.to_s).to_sym if result.reliable?
 | 
					
 | 
				
			||||||
 | 
					    iso6391(result.language.to_s).to_sym if result&.reliable?
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def iso6391(bcp47)
 | 
					  def iso6391(bcp47)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user