Bump pundit from 2.1.1 to 2.2.0 (#17543)
* Bump pundit from 2.1.1 to 2.2.0 Bumps [pundit](https://github.com/varvet/pundit) from 2.1.1 to 2.2.0. - [Release notes](https://github.com/varvet/pundit/releases) - [Changelog](https://github.com/varvet/pundit/blob/main/CHANGELOG.md) - [Commits](https://github.com/varvet/pundit/compare/v2.1.1...v2.2.0) --- updated-dependencies: - dependency-name: pundit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * `include Pundit` is deprecated Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
This commit is contained in:
		
							parent
							
								
									c45c91c588
								
							
						
					
					
						commit
						823d816c06
					
				
					 3 changed files with 4 additions and 4 deletions
				
			
		
							
								
								
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Gemfile
									
									
									
									
									
								
							| 
						 | 
					@ -65,7 +65,7 @@ gem 'oj', '~> 3.13'
 | 
				
			||||||
gem 'ox', '~> 2.14'
 | 
					gem 'ox', '~> 2.14'
 | 
				
			||||||
gem 'parslet'
 | 
					gem 'parslet'
 | 
				
			||||||
gem 'posix-spawn'
 | 
					gem 'posix-spawn'
 | 
				
			||||||
gem 'pundit', '~> 2.1'
 | 
					gem 'pundit', '~> 2.2'
 | 
				
			||||||
gem 'premailer-rails'
 | 
					gem 'premailer-rails'
 | 
				
			||||||
gem 'rack-attack', '~> 6.5'
 | 
					gem 'rack-attack', '~> 6.5'
 | 
				
			||||||
gem 'rack-cors', '~> 1.1', require: 'rack/cors'
 | 
					gem 'rack-cors', '~> 1.1', require: 'rack/cors'
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -440,7 +440,7 @@ GEM
 | 
				
			||||||
    public_suffix (4.0.6)
 | 
					    public_suffix (4.0.6)
 | 
				
			||||||
    puma (5.6.2)
 | 
					    puma (5.6.2)
 | 
				
			||||||
      nio4r (~> 2.0)
 | 
					      nio4r (~> 2.0)
 | 
				
			||||||
    pundit (2.1.1)
 | 
					    pundit (2.2.0)
 | 
				
			||||||
      activesupport (>= 3.0.0)
 | 
					      activesupport (>= 3.0.0)
 | 
				
			||||||
    raabro (1.4.0)
 | 
					    raabro (1.4.0)
 | 
				
			||||||
    racc (1.6.0)
 | 
					    racc (1.6.0)
 | 
				
			||||||
| 
						 | 
					@ -757,7 +757,7 @@ DEPENDENCIES
 | 
				
			||||||
  pry-byebug (~> 3.9)
 | 
					  pry-byebug (~> 3.9)
 | 
				
			||||||
  pry-rails (~> 0.3)
 | 
					  pry-rails (~> 0.3)
 | 
				
			||||||
  puma (~> 5.6)
 | 
					  puma (~> 5.6)
 | 
				
			||||||
  pundit (~> 2.1)
 | 
					  pundit (~> 2.2)
 | 
				
			||||||
  rack (~> 2.2.3)
 | 
					  rack (~> 2.2.3)
 | 
				
			||||||
  rack-attack (~> 6.5)
 | 
					  rack-attack (~> 6.5)
 | 
				
			||||||
  rack-cors (~> 1.1)
 | 
					  rack-cors (~> 1.1)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@
 | 
				
			||||||
module Authorization
 | 
					module Authorization
 | 
				
			||||||
  extend ActiveSupport::Concern
 | 
					  extend ActiveSupport::Concern
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  include Pundit
 | 
					  include Pundit::Authorization
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def pundit_user
 | 
					  def pundit_user
 | 
				
			||||||
    current_account
 | 
					    current_account
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue